Questions tagged [testcase]

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.

A test case is also defined as a sequence of steps to test the correct behavior of a functionality/feature of an application. A test case is a set of conditions or variables under which a tester will determine if a requirement upon an application is partially or fully satisfied. It may take many test cases to determine that a requirement is fully satisfied. In order to fully test that all the requirements of an application are met, there must be at least one test case for each requirement unless a requirement has sub requirements. In that situation, each sub requirement must have at least one test case. Generally Senior tester writes test cases and after verification and approval the junior testers carry out execution of test cases.

998 questions
-1
votes
2 answers

Test case repository for BDD

We are transitioning across to BDD. Currently using specflow and visual studio to run our automated tests via Jenkins and have over 1000 tests in Quality Centre written in a more traditional fashion of which, the regression tests will be converted…
QA Guy
  • 7
  • 1
-1
votes
2 answers

Selenium testing in eclipse giving error

I am trying to run a test case in java selenium with testing in eclipse but I am getting the below error .Is there anyone who can help me.? org.testng.TestNGException: org.xml.sax.SAXParseException; lineNumber: 34; columnNumber: 15; The content of…
Yogesh
  • 15
  • 1
  • 4
-1
votes
2 answers

Reducing the time complexity of this Program

Question - Write a function called answer(document, searchTerms) which returns the shortest snippet of the document, containing all of the given search terms. The search terms can appear in any order. Inputs: (string) document = "many google…
python
  • 4,403
  • 13
  • 56
  • 103
-1
votes
1 answer

Android TestCase how to get android.support.v4.FragmentTabHost's content view

I have an Activity with android.support.v4.FragmentTabHost which I want to test. My layout:
user3875388
  • 541
  • 1
  • 6
  • 19
-1
votes
2 answers

How to handle system.exit in the cucumber test case

newbie to cucumber and selenuim in java I am calling a method in cucumber test case and there if it goes into the else part it would send a mail and exit from the system.when i am running this method with cucumber then it will send the mail and exit…
Akshay jain
  • 555
  • 1
  • 7
  • 22
-1
votes
1 answer

Is it posible to run some case tests from a file using codeblocks without using file functions

I have the following tests below in a file and I want to run these tests but i do not want to type all of them and neither change my code which is using scanf to fscanf to read from a file, is it possible using CodeBlocks? Sample Input 2 3 a b c A…
Roni Castro
  • 1,968
  • 21
  • 40
-1
votes
1 answer

SoapUI override properites value of testCase when run as test step

I have a test case that use custom properties. I want to override the properties value with another value when i run this testcase as a test step in another test case. how can i do it?
Adi Mor
  • 2,145
  • 5
  • 25
  • 44
-1
votes
2 answers

Soapui - Message Content Assertion fail because environment params

I'm using soapUi project that run on several environments. In one of my test case i used Message Content Assertion, that work fine, but when i changed the environment in the project (i'm using soapUI pro but it could done by using params) the test…
Adi Mor
  • 2,145
  • 5
  • 25
  • 44
-1
votes
1 answer

Creating Testdata in HTML format for Robot test framework in python

I am trying to use robot test framework. I have some knowledge in python. I read most of the tutorials available online but all the tutorials are explaining some example but when it comes to my work(I have to use keyword or data driven testing) i am…
-1
votes
2 answers

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 already extends something? Like if I had: public class…
zProgrammer
  • 727
  • 4
  • 10
  • 22
-2
votes
1 answer

Test suites in Azure DevOps

Hi so I want to create multiple test suites in a test plan but I want them all under the same PBI and I can't tell if I just can't figure it out and there must be another way or if it's simply impossible. Your help is highly appreciated!
-2
votes
1 answer

How to write Unit Test Case for Linq Expresssion Dot Net

How to write Nunit Test Case for following Linq Expression? public IQueryable Query(Expression> predicate) { return _dbSet.Where(predicate); }
karthik
  • 29
  • 3
-2
votes
1 answer

How to write a test case for an equals method

How would I go about writing a test case for this equals method that compares ID numbers after it checks if an object is an "Integer" or "Patron". Here is the method: public boolean equals(Object other) { boolean bool = false; …
-2
votes
1 answer

Jira Xray add Test Steps to existing Test via. csv upload

Problem: I have a bunch of standard test cases (~200) that are easily imported with the bulk csv importer. But sometimes I want to add extra tests to specific testcases. This works by referencing the Key as a column in the csv file, but it only…
-2
votes
1 answer

Can TestCafe open source run test cases written in TestCafe studio?

I'm trying to figure out if there is compatibility between test cases written in TestCafé Studio and TestCafé open-source. The major difference is that open source only has the command line interface, but I suppose that a test case created with…
morenuts
  • 5
  • 1