Top "Testcase" questions

A test case in software engineering is a set of conditions or variables under which a tester will determine whether an application or software system is working correctly or not.

Junit test case for database insert method with DAO and web service

I am implementing a webservice based university management system. This system adds certain courses to database. here below is the …

java web-services junit dao testcase
How to escape double quotes in as a parameter to an NUnit TestCase?

I tried writing the following TestCase for an NUnit test written in VB.net: <TestCase("FirstNode", "<node id=\"…

vb.net nunit escaping testcase double-quotes
Positive test cases and negative test cases

what are positive test cases and negative test cases? Upon googling about it i have found answers that are very …

testing qa testcase
@After ,@before not working in testcase

I have started testing and now i want to use @After, @Before and @Test but my application only runs the @…

java junit testcase
Does MSTest have an equivalent to NUnit's TestCase?

I find the TestCase feature in NUnit quite useful as a quick way to specify test parameters without needing a …

c# nunit mstest testcase rowtest
Test cases in inner classes with JUnit

I read about Structuring Unit Tests with having a test class per class and an inner class per method. Figured …

java junit4 inner-classes testcase
How do I specify a single test in a file with nosetests?

I have a file called test_web.py containing a class TestWeb and many methods named like test_something(). I …

python testcase nosetests
Persist variable changes between tests in unittest?

How do I persist changes made within the same object inheriting from TestCase in unitttest? from unittest import TestCase, main …

python unit-testing persistence testcase python-unittest
Jira as Test Case Management Tool

I have reviewed several test case management solutions available for Jira such as: http://www.testandtry.com/2009/07/01/test-case-management-in-jira-1/ http://confluence.…

jira testcase
NUnit TestCase with Generics

Is there any way to pass generic types using a TestCase to a test in NUnit? This is what I …

c# unit-testing generics nunit testcase