python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why user autometically authenticated in django test case?
from django.urls import reverse
from rest_framework.test import APITestCase
from rest_framework.authtoken.models import Token
from faker import Faker
fake = Faker()
APICLIENT = APIClient()
from facto...
Anand Renjre
Votes: 0
Answers: 1
Symfony PHPUnit - Refresh Database only after all tests
I use HautelookAliceBundlePhpUnitRefreshDatabaseTrait to perform my tests. But the problem with that is that my data is reset at each test. What I would like is some kind of instance where I can play ...
Pewoh
Votes: 0
Answers: 0
nUnit - Ignoring a single inline TestCase
I'm using nUnit for some testing and I have a test with multiple inline test case inputs. I have a known bug with one of the TestCase inputs, and I would like to have that single TestCase ignored, but...

klreeher
Votes: 0
Answers: 1
Django testing of views.py and model.py
I am new to django testing am doing the testing for my views.py file which cintain alot oif classes
Here we are take one of the class among the others
the views.py file looks like
class AssignSubFarm...
Adarsh Srivastav
Votes: 0
Answers: 1