testcase
Should one use TestCase or FunctionTestCase for testing in python?
While trying to get a hunch of TDD in python I encountered the FunctionTestCase class. I understand, that it defi开发者_开发百科nes equivalent functions to the TestCase classes.[详细]
2023-03-13 13:43 分类:问答Android: Is there any naming rule for test cases
I found really weird stuff when I was building my test project. I subclassed my own test from AndroidTestCase, and implemented several test cases inside. Some cases didn\'t run at 开发者_如何学运维fir[详细]
2023-02-28 00:50 分类:问答How to test the textbox value in the Android JUnit test
i have just created login screen project.I wrote the testcase for that.I dont know how to enter the text in textbox in JUnit test case. i just did like this[详细]
2023-02-20 11:23 分类:问答Test Case Preparation
I am a newbie to testing field. I know that test cases are the conditions to fulfi开发者_Python百科l any client requirements i.e. the test conditions we need to fulfil the requirements.[详细]
2023-02-18 11:39 分类:问答Giving parameters into TestCase from Suite in python
From python documentation(http://docs.python.org/library/unittest.html): 开发者_如何学编程import unittest[详细]
2023-02-17 04:14 分类:问答How to input parameters into Selenium RC TestSuite?
I have to test few sites which sales the same things, but they have an another template. So I want to run each MainTestClass with giving some input parameter, let\'s say :[详细]
2023-02-16 22:07 分类:问答Test cases of stack
A stack is implemented via linked list. What are the tes开发者_运维知识库t cases when it works and when it doesn\'t?The appropriate unit tests depend on your particular interface (blackbox testing) as[详细]
2023-02-11 06:12 分类:问答How to stop PHPUnit from adding included/required files as part of the testsuite?
I tried to follow the PHPUnit manual on how to setup a testsuite with a custom test execution order. I now realized that i only need these lines and some includes to get the suite working:[详细]
2023-02-09 23:39 分类:问答issue with object oriented programming
hi I am new to java. I have to write test case for this method in java, public class ABC{ public void updateUser(String emailId, HashMap hm) {[详细]
2023-02-07 16:45 分类:问答Run Automated Tests After Team Build On Physical Environment
We are trying to automate our tests but we have some problems. Our solution has 7 projects, one of them is WCF server and one of them is Windows Forms project. Others are helper projects.[详细]
2023-02-03 09:54 分类:问答