Tagged Questions
The testcase tag has no wiki summary.
12
votes
10answers
2k views
css problem: Absolutely positioned parent and float:right child stretches
In IE6, IE7 and FF2 the .outer div below is stretching out to the right edge of the document. Here is a complete test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
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 ...
8
votes
1answer
1k views
Does MSTest Have an Equivalent to NUnits TestCase
I find the TestCase feature in NUnit quite useful as a quick way to specify test parameters without needing a seperate method for each test. Is there anything similar in MSTest?
[TestFixture]
...
6
votes
5answers
1k views
JUnit TestCase object instantiation
Is a new (or different) instance of TestCase object is used to run each test method in a JUnit test case? Or one instance is reused for all the tests?
public class MyTest extends TestCase {
public ...
5
votes
7answers
2k views
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/
...
5
votes
4answers
1k views
NUnit TestCase with Generics
Is there any way to pass generic types using a TestCase to a test in NUnit?
This is what I would like to do but the syntax is not correct...
[Test]
[TestCase<IMyInterface, MyConcreteClass>]
...
5
votes
5answers
370 views
Writing a re-usable unittest.TestCase method
I'm writing tests using the unittest package, and I want to avoid repeated code. I am going to carry out a number of tests which all require a very similar method, but with only one value different ...
4
votes
1answer
568 views
How to export testopia test-cases?
I'd like to export testopia test cases in csv or XML format but the builtin export doesn't allow to have the full test case with steps and results, so if I have to export for someone who will do tests ...
4
votes
3answers
797 views
Test case data for convex-hull
I need to make a 2D convex hull function for a class assignment and I want a more robust test cases than the assignment provides. Does anyone known of a largish test cases (25 < n < 100) with ...
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
1answer
191 views
Is there a JUnit equivalent to NUnit's testcase attribute?
I've googled for JUnit test case, and it comes up with something that looks a lot more complicated to implement - where you have to create a new class that extends test case which you then call:
...
3
votes
1answer
142 views
How can I do such a typical unittest?
This is a simple structure in my project:
MyAPP---
note---
__init__.py
views.py
urls.py
test.py
models.py
...
3
votes
2answers
137 views
How do I simplify these NUNit tests?
These three tests are identical, except that they use a different static function to create a StartInfo instance. I have this pattern coming up all trough my testcode, and would love
to be be able to ...
3
votes
3answers
99 views
Get example matches that fit a regular expression [closed]
Possible Duplicates:
Random Text generator based on regex
Using Regex to generate Strings rather than match them
Hi,
I need a matches generator for my regular expressions.
E.g. for input ...
3
votes
7answers
965 views
How can I best write unit test cases for a Parser?
I am writing a parser which generates the 32 bit opcode for each command. For example, for the following statement:
set lcl_var = 2
my parser generates the following opcodes:
// load immdshort 2 ...
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
2answers
41 views
How to use TestCase in NUnit 2.5?
I have a Currency class which I persist to my database using NHibernate. Currency class looks like this:
public class Currency : Entity
{
public virtual string Code { get; set; }
public ...
2
votes
6answers
41 views
Checking value of “type” attribute of input field
I am making test cases for automation testing. I want to check whether the password fields in my form have type="password" (for input elements) or not...
How can I do this using jquery?
Thanks.
2
votes
5answers
339 views
Giving parameters into TestCase from Suite in python
From python documentation(http://docs.python.org/library/unittest.html):
import unittest
class WidgetTestCase(unittest.TestCase):
def setUp(self):
self.widget = Widget('The widget')
...
2
votes
3answers
377 views
junit: Best practice to develop test case?
Technology: Junit latest version
Application is business oriented
Some people use hard coded data for test case some use properties files and some xml files. As per my knowledge xml is better than ...
2
votes
2answers
139 views
NUnit use of TestCase clarity needed
I have a test like this:
[TestCase(12, Result= typeof(mytype))]
public mytype GetById(int id)
{
yada, yada, yada.
}
in the NUnit error window, I see this:
Test.Tester.GetById(12):
Expected: ...
2
votes
3answers
217 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
2answers
291 views
Black box test cases for insertion procedure
insertion_procedure (int a[], int p [], int N)
{
int i,j,k;
for (i=0; i<=N; i++) p[i] = i;
for (i=2; i<=N; i++)
{
k = p[i];
j = 1;
while (a[p[j-1]] > ...
2
votes
11answers
359 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
1answer
356 views
Is there a JUnit 4+ test case execution priority toolkit?
Is there a JUnit 4+ test case execution priority toolkit?
In the development teams I work we use JUnit 4+ for basic/unit testing and also for integration testing and system testing.
1) One trait of ...
2
votes
3answers
829 views
Simple online testcase management tool
I am desperately looking for a simple, online test case management tool. Something inexpensive, for a small team, similar to the on demand version of fogbugz.com.
I have found lots of tools but most ...
2
votes
2answers
591 views
Java: Why does this method have side effects?
I have a method that is producing side effects, even though certain variables are marked final. Why is this? Perhaps I am confused about what final does.
@Test
public void testSubGraph() {
...
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
2answers
35 views
Getting java.io.IOException when running JUnit test case in Eclipse
Here's my code
public class JWebUnitTest extends WebTestCase {
public JWebUnitTest(String name) {
super(name);
}
public void setUp() {
...
1
vote
1answer
89 views
module name overloading and import path
The code below fails because twisted.trial.unittest.TestCase, the desired baseclass, is not the baseclass.
from twisted.trial import unittest
from unittest import TestCase
import myapp
class ...
1
vote
1answer
60 views
java.lang.UnsatisfiedLinkError when running uispec4j test case
I am getting the above error message (java.lang.UnsatisfiedLinkError) when running UISpec test case in Eclipse as well as IntelliJ.
I have sun/oracle JDK 1.7 installed.
The full report of the error ...
1
vote
2answers
57 views
how to write simple txt testcases in java
Hi I'm writing my first Java app and I've got a few Testcases (*.tc files) I want to direct to the app via this script:
for f in `ls *.tc`; do
echo "Current Testcase: $f"
x=${f%.*}
java Main ...
1
vote
2answers
62 views
How to read parameter values from a TestCase in Microsoft Test Manager
I am trying to execute the testcases programatically using the microsoft test manager using c#.
For that I want to read the parameter values stored in Microsoft Test Manager.
Please suggest me how to ...
1
vote
2answers
46 views
Writing test case for boundary and exceptional
I'm being asked to sketch a Junit test case for a method:
public int checkOutItems(ArrayList<int> trolley)
which will return an ArrayList of item name and price list.
It is also defined the ...
1
vote
1answer
64 views
How to reduce the time in executing Selenium test cases?
I'm writing the Selenium test cases for each screen to test the different scenarios. In our project for each build in Jenkins, its Selenium test cases (QA) also runs automatically.
My problem is even ...
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
1answer
111 views
TestSuite with testsuites and testcases
I need to make a big python suitecase consisted of other suitcases and testcase which I have already made to execute together.
How do I do this?
For example, here there is a suitecase ...
1
vote
0answers
162 views
Start a second activity inside a TestCase (which is not the activity under test)
How can I start a second (mock) activity in a ActivityInstrumentationTestCase2 or InstrumentationTestCase?
My Problem is this:
Intent intent = new Intent(getInstrumentation().getContext(), ...
1
vote
4answers
112 views
Stop testsuite if a testcase find an error
I have a testSuite in Python with several testCases.
If a testCase fails, testSuite continues with the next testCase. I would like to be able to stop testSuite when a testCase fails or be able to ...
1
vote
0answers
71 views
How to disable rendering the view in ActionController TestCase (Rails 3.0.9)
What's the proper way to disable ActionController::TestCase to actually render the views?
Alternatively, what'd be the way to render the view without the layout in the tests?
Using rr, I've tried
...
1
vote
2answers
55 views
Error reading test cases from a file in C
for a programming homework, I'm implementing Prim's algorithm, the format of the input file for test cases is as follows:
The first line of input will be an integer C, which indicates the number of ...
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
2answers
330 views
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 :
java -jar ...
1
vote
3answers
148 views
Django UrlResolver, adding urls at runtime for testing
I'm looking to do some tests and I'm not really familiar with the URLResolver quite yet but I'd like to solve this issue quickly.
In a TestCase, I'd like to add a URL to the resolver so that I can ...
1
vote
1answer
340 views
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.
We created ...
1
vote
2answers
398 views
Junit 3 to JUnit 4 conversion
I had the following version of a test in JUnit 3, and I tried converting it into JUnit 4, with no success. The idea is to have a base test case, that does the actual test of an interface, say Service ...