Tagged Questions
11
votes
12answers
3k views
In agile like development, who should write test cases?
Our team has a task system where we post small incremental tasks assigned to each developer.
Each task is developed in its own branch, and then each branch is tested before being merged to the ...
3
votes
2answers
179 views
What is a test case?
I'm having difficulties finding a hard definition of the word "test case". Some sources claim that a test case is a class that extends TestCase. Other sources claim that a test case is a single test ...
3
votes
3answers
1k views
Looking for a hosted web application for test case tracking and management
For a current project I am working on I need a way to keep track of test cases.
We are currently using unfuddle to keep track of our bugs, documents and source code. Since our app is a fairly ...
2
votes
3answers
218 views
What tools can I use to document testcases?
Can someone recommend an easy to use, flexible, lightweight tool to document test cases?
I have to test a GUI and there are very many test cases, which are currently held in an Excel spreadsheet ...
2
votes
2answers
337 views
Test cases for string inputs
What are all test cases (and test test case brainstorming questions) related to string inputs?
Individual answers may contain questions specific to certain domains (eg email address) but should ...
2
votes
11answers
360 views
What are various methods for discovering test cases
All,
I am a developer but like to know more about testing process and methods. I believe this helps me write more solid code as it improves the cases I can test using my unit tests before delivering ...
2
votes
3answers
812 views
How to unittest Session timeout in Django
I have a requirement something like this:
As soon as the user signsup(and will be in the waiting state untill he confirms his email address), a session variable is set something like ...
2
votes
5answers
2k views
Test cases for each link in a Website?
I have a pretty basic question about test cases in the world of Website development. Does it make sense to have a separate test case for each hyperlink for all pages in a site? For e.g. my site might ...
2
votes
4answers
542 views
Lorem ipsum of Perl, C#, C, Java?
In visually testing interfaces where code might live what do you use for your particular language for a standard? "Hello World" is not sufficiently complex enough in most cases. I am particularly ...
1
vote
3answers
41 views
What to write about testing my application?
I'm doing an academic project and I'm not asking for help, only suggestions for content when it comes to testing:
Basically I have made a game, and I've been advised to AVOID writing about low level ...
1
vote
2answers
166 views
str object is not callable for unittest
I have written a test case which shows the error
from unittest import *
class MyTest(unittest.TestCase):
def test_add(self):
self.assertEquals(1,(2-1),"Sample Subraction Test")
if ...
1
vote
4answers
115 views
Design Practice: code to create before deletion in deletion test case?
I have written test case for deletion of entity. In test case i simply pick first record by select query and pass its id to deletion method. Entity i want to delete can have some child entities ...
1
vote
1answer
55 views
test suite for CSV specification?
i am facing some problem for writing test suite (test cases)for basic CSV specification . i have no idea how to write that? can anyone help?
0
votes
2answers
18 views
How to get feedback on JUnit Testing in Eclipse
I have a simple JUnit test in Eclipse.
public class HelloTest extends TestCase {
CalculatorEngine ce;
public HelloTest(String name) {
super(name);
}
@Override
protected ...
0
votes
3answers
39 views
java junit test case for the class
My program is as follows:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import java.util.StringTokenizer;
import java.util.regex.Pattern;
public class ...
0
votes
2answers
25 views
Django loading fixtures (not from installed apps) in tests
Is there a way to load fixtures that do NOT reside in appname/fixtures? According to django docs, fixtures have to be in directory of INSTALLED_APPS
0
votes
1answer
46 views
Test case writing
How to write test cases for SQl queries?
is there any procedure or format to follow.
for instance i am having an insert query with complex joins, and how to develop testcase for that.
0
votes
1answer
68 views
Automated input generator for black-box testing
I am a newbie for software testing. I want to know, is there any open source tool for automated test case generator black-box testing.
I found this tool KLEE: unassisted and automatic generation of ...
0
votes
0answers
69 views
Ruby on rails ActionController::TestCase helper class
I'm trying to use a helper class for testing a ruby on rails app, but I can't quiet get the code to run. I keep getting this error when running my test.
1) Error:
test_login(MainControllerTest):
...
0
votes
0answers
48 views
How to use OpenX test case?
I found 'tests' folder in OpenX SVN trunk, But I don't know how to use it. I had tried run the cli_test_runner.php in :
php cli_test_runner.php unit
But it said that can't find the unit order.
0
votes
1answer
49 views
Why would it not be good to have a test case step tell you to repeat a previous step again?
Let's say I have a test case with some steps in it. Now, let's say that step 3 needs to be repeated after you complete steps 4 and 5 ... so that when you do step 6 you are in the right place.
Is it ...
0
votes
6answers
500 views
Test Case Preparation
I am a newbie to testing field. I know that test cases are the conditions to fulfil any client requirements i.e. the test conditions we need to fulfil the requirements.
I need some idea how to ...
0
votes
2answers
349 views
web site testcase sample format
For web development ,
Can u send some sample test case xls report ,
Or is there any good open source plz refer ,
Is there any free automated testing for php web development ,
Thanks
0
votes
1answer
131 views
Need help on writing php testing files to test my PHP controller class
followed by my previous website development,we have built several controller classs corresponding to entities that will appear in our website development.and our website is very simple:just a shopping ...