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.

learn more… | top users | synonyms

1
vote
1answer
20 views

jmockit mocked constructor not returning expected value

I am trying to unit test a class where one of its methods returns an instance of a collaborator class: depending on the values of its arguments it either returns a newly created instance, or a saved, ...
0
votes
0answers
9 views

How to generate testcase report with histories in QA Complete?

I have around 100 testcases in QA Complete tool. I need to generate a report for all the testcases with its complete information like History tab, expected results, actual results etc. Please help me ...
2
votes
1answer
24 views

getting 'ObsoleteTrait' when adding a trait in a testCase

I'm having a problem. I'm using a code in a testCase It starts like this |mapeos obj myClass| myClass := Smalltalk at: #ClaseForTesting. myClass addToComposition: TraitPruebaCondicion1. the ...
0
votes
0answers
31 views

TestLink and Jenkins Test Case not run

I have three test cases in TestLink and when I build the maven project, using Jenkins, none of the tests case is run, the project is built correctly but the test cases aren't run. I am using JUnit for ...
1
vote
1answer
207 views

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 code that I am using. Course.java public class Course { ...
0
votes
2answers
59 views

Recursive method not working properly in grails/groovy unit test case

MyService.class public boolean myMethod1() { boolean success = false for (1..2) { success = myMethod2() } return success } public boolean myMethod2() { int value = ...
0
votes
3answers
29 views

Is it good practice for tests in a test case depend on each other?

I have a class that I would like to test: class DocumentProcessor{ public function write(){ } public function read(){ } } And I have a simple test case: class ClientTest extends ...
0
votes
1answer
53 views

Selenium, FluentAutomation & NUnit - How do I switch browsers for each TestCase?

Currently, openGoogle() does get called for each test case with the correct parameters. The problem is that setBrowser does not appear to be working properly. It does set the first time and ...
0
votes
0answers
55 views

add default request-response to TestSteps created with SOAPUI java api

I want to create a TestSuite programmatically using java api. My code is shown below. WsdlInterface service = ifaces.get("my service"); WsdlOperation operation = service.getOperationByName("my ...
0
votes
3answers
29 views

comparing querysets in django TestCase

I have a very simple view as follows def simple_view(request): documents = request.user.document_set.all() return render(request, 'simple.html', {'documents': documents}) To test the above ...
0
votes
1answer
45 views

Why is there a difference between invoking a method and returning a local variable? [closed]

fails at h.getNetYearlyIncome(), seems to be 5k too high. I have been working on it all day and cannot figure it out. Why is h.getNetYearlyIncome()= h.getGrossYearlyIncome() - h.getTaxesWithheld() ...
1
vote
1answer
20 views

Devise does now allow me to sign_in using TestCase

I am using Devise to sign in Users. I want to write some tests to ensure everything is running smoothly. My sign in is using Poloymorphism Association. A User can be a Employer or a Applicant, which ...
0
votes
0answers
53 views

How to import test cases to TestLink 1.9.5 from LibreOffice Calc?

I tried importing testcases and it shows a message saying that 'Import done', but no testcases got imported.For this I created an XML file using LibreOffice Calc with columns ...
0
votes
1answer
72 views

How to find out what is wrong in test case during importing it to TFS 2010

I'm importing test cases from xml file to TFS2010 and get an exception. But there is no info about what definitely is incorrect. "Work item 0 is invalid and cannot be saved. Exception: 'TF237124: ...
1
vote
0answers
14 views

show automatic number test case

I wanted to know if is there any way of hidding the automatic number that TestLink shows when you create a new Test Case. In my example, "idERP" is the ID of the project, but the "-1, -2..." is an ...
0
votes
0answers
51 views

How convert a MySQL test case to a c/c++ source code file?

Supposed that I have a MySQL test case mytest.test. Here are its contents: use test; create table t(id int, name varchar(25)) engine = falcon; insert into t values(1, "John"); insert into t values(2, ...
0
votes
1answer
80 views

JUnit: how do you extend TestCase if the class already extends something?

I am attempting to make some JUnit test classes for a project. I've been following the following format: public class ExampleTest extends TestCase { How would I make a TestCase if the class ...
1
vote
1answer
81 views

Rally add test case results in bulk using web services API

We are about to start the phase of updating test results in Rally via the api. I couldn't find an example to do this via the web services API (e.g. posting xml). Can anyone point me to this? Also I ...
2
votes
1answer
123 views

Junit4 Test Suite - Looping and adding test cases dynamically from test suite

I have an XML file with many models. I'm parsing this XML file in Test Suite and reading each model. For each model, I want to execute specific list of test cases. That means, inside a FOR loop in ...
0
votes
0answers
18 views

How to get three-way coverage for test case with 7 input variables

How to get three-way coverage for test case with 7 input variables, or is there any online service to do this kind of job?
0
votes
1answer
27 views

Generating test cases for a program with lots of computation

I'm writing a program that solves this problem: http://acmph.blogspot.com/2010/12/usaco-prime-cryptarithm.html I'm trying to write test cases to check my solution against. But coming up with the ...
0
votes
1answer
51 views

Making testSteps interact with each others using SOAPUI

I'm new at using SOAPUI and I can't find how to properly test the REST URI on my server. I want to test POST, PUT and DELETE on a given URI. The POST method should create a new entry in my database ...
1
vote
1answer
62 views

Rally Queries: Pulling Results From Objects

I am still having trouble pulling results from the objects that I query. The query below pulls all TestCase objects and prints them to screen. The objects look like this: [object, Object]. I tried to ...
0
votes
1answer
76 views

java junit test cases not consistent [closed]

I'm new here, hi all. I looked around already for some info on this and didn't find anything, but I'm sure it's something simple that I'm missing. I've got a simple program that I'm trying to test ...
1
vote
1answer
72 views

Finding All TestCases in RALLY regardless of result. (Querying for testcases that have not been run)

I am trying to construct a query that will find every created testcase, even if it has not been run (has no result assigned yet). I started building a custom application based off of the TestCase ...
0
votes
0answers
43 views

zephyr automated test case execution

I wanted to execute a automated test case in Zephyr consuming ZBot or Zephyr API. Can anyone tell me how to execute the test case in Zephyr using API ? How to use ZIP(Zephyr Interceptor Program) to ...
0
votes
1answer
35 views

How To write TestCase nunit test for keyPairValue

I am looking for a way to pass keyValuePair into my test with TestCase [TestCase<KeyValuePair<int,string>>(1,"XX")] public void someTest(KeyValuePair<int,string> ...
1
vote
1answer
158 views

If i'm making test cases using selenium web driver and cannot use selinium IDE, how else do i use it.?

I cannot use the selenium IDE as i'm not allowed to use firefox. The website that i need to test doesnt have ID's for every tag. So i cannot even use that. My question is, how else do i use the ...
0
votes
1answer
48 views

Unable to add test results to some testcases, in Rally

Recently, When I try to add results to some testcases (from rally web page), I see the following error. "The Test Case Result 2013-02-28 Pass could not be saved. Please correct the errors identified ...
1
vote
0answers
95 views

Django test database not auto-flushing

I have a bunch of unit test files, all of which consist of django.test.TestCase classes. Wrote myself a little shell script to uncomment/comment test file imports in my __init__.py file, so I can run ...
0
votes
1answer
112 views

Django unit test. Simple example

I learn unit test with Django. How to write test for this function? I need this example to understand. @login_required def datas(request): queryset = Data.objects.filter(user=request.user) if ...
0
votes
1answer
235 views

Laravel 4 No tests found in TestCase

I'm having some problems with phpunit and Laravel 4. When I execute a test, phpunit give me these warnings: 1) Warning No tests found in class "Illuminate\Foundation\Testing\TestCase". and 2) ...
0
votes
1answer
64 views

How to write a spock testcase for a method which calls other methods inside

Say i have a method which populate some data to a list and it internally calls one more method(which i'm testing independently) and that populate some data to the list. Here what is the best way of ...
0
votes
1answer
108 views

How to write my data in json file?

How to write my data in json file? This is my try: from django.test import TestCase from django_dynamic_fixture import G import content.factories from django.core import serializers from ...
0
votes
1answer
35 views

Which tool is used to identify whether the method have a test cases or not?

I'm working on the project in a mid-level company.But i don't have any tool to identify whether the method have the test cases or not. So now i manually go and check whether the method has the test ...
1
vote
3answers
52 views

Django unittests - ImproperlyConfigured error

Im trying to write tests for my module. When i run: python manage.py test my_module Im getting message: django.core.exceptions.ImproperlyConfigured: Please fill out the database NAME in the ...
0
votes
0answers
165 views

how to write “JUnit test case” android?

I want to learn JUnit Tesing in android. I do google and now I know how to create the JUnit test case. But my problem how to write the logic in that class, I don't know about that. Suppose I want to ...
0
votes
1answer
113 views

Junit4 test case for Thread

Hi I am Trying to write Junit test case for this because i cant return anything here to catch and test assertrue(....) in my test case. SendMailTLS is a separate classs(without main) which sends mail ...
0
votes
1answer
152 views

Running test case files(tst) as part of MSbuild

I am using TFS 2010 and Visual Studio 2010. I have a build definition which points to my solution. The build runs overnight I have a set of test case files(*.tst) and i would like my current build to ...
0
votes
0answers
280 views

Junit test cases for hibernate

I have developed a web project(struts2+hibernate) for which i need to do code coverage.I dont know how to write junit test cases for this Hibernate part.Can anyone suggest me idea.i want my test case ...
1
vote
3answers
68 views

Erlang test cases manual fail

What is the best way to manually make a test case fail in Erlang common test? I am using something like this: ok = nok, % fail as soon as possible to raise a badmatch exception and make the case ...
3
votes
1answer
464 views

How do I create Android test suite which only runs specified tests in one or more classes?

Can someone shed som light on how to organize tests in test suites, using JUnit in Android? I find allmost all examples to be non-working, and I'm wondering what it is that I'm not getting. I've made ...
1
vote
0answers
196 views

java.lang.NoClassDefFoundError:android and junit test

I saw that I'm not the only one having this problem but I don't find a correct answer. I have an android project that I want to test. I create a junit test class for each class of my project. My ...
0
votes
1answer
109 views

Share single instance of selenium RemoteWebDriver between multiple test cases

Are there problems with sharing a single instance of RemoteWebDriver between multiple test cases? If not, what's the best practice place to create the instance? I'm working with Python, so I think ...
4
votes
4answers
714 views

How to write Test Cases?

I want to learn how to write test cases before writing the code. I read an article about test-driven development. I wonder how developers write test cases? For Example this method: public int ...
-1
votes
3answers
379 views

How to write the positive and Negative test cases of same scenario in java?

I want to write the both test cases whether positive scenario and negative scenario. My sample code is, /** * */ public void testgetAsnAccuracyInstanceType() throws Exception ...
0
votes
1answer
75 views

How to print the value within the method in testcase?

I need to print the value within the method using the test case. My code is: public void testgetAllRatingElementsWeekNo() throws Exception { String METHOD_NAME = "testgetAllRatingElementsWeekNo"; ...
0
votes
1answer
270 views

Error while running JUNIT testcase

Hi I get the following error when i try to execute my JUNIT test case. If somebody can help me with this, it would be of great help. org.springframework.beans.factory.BeanCreationException: Error ...
0
votes
1answer
36 views

Regarding Symfony Test Cases

In Symfony2 every bundle gives a folder named Tests. Can any body explain how to run those cases. I tried, with following links but no success. Testing and Running Symfony2 Tests
0
votes
0answers
298 views

Quality Center - qtp script to download all attachments from a folder and subfolders

I am writing QTP script to download attachments of all testcases from a folder and all subfolders in HP Quality Center. but i would be able to download only specific to folder level. would like to ...

1 2 3 4 5