Tagged Questions
The data-driven-tests tag has no wiki summary.
7
votes
4answers
1k views
Data Driven Unit Tests
What is the best practice for testing an API that depends on data from the database?
What are the issues I need to watch out for in a "Continuous Integration" environment that runs Unit Tests as part ...
6
votes
2answers
726 views
Data-driven DUnit testing
The way DUnit normally works is you write some published methods, and DUnit runs them as tests. What I want to do is a little different. I want to create tests at run time based on data. I'm trying to ...
5
votes
5answers
6k views
Possible to pass parameters to TestNG DataProvider?
We would like to run some of our tests each against a set of data values, verifying that the same conditions hold true for each. The data is currently stored in either flat files or in simple Excel ...
4
votes
4answers
87 views
Is there a way to use data that's already in memory to drive unit tests?
I know I can use data in files to drive unit test, for example data inside a csv or xml file.
For example:
[TestMethod]
[DataSource(
"Microsoft.VisualStudio.TestTools.DataSource.CSV",
...
4
votes
1answer
336 views
How can i reference an embedded data file for data-driven unit tests?
This is my scenario, I want to make a Data-Driven unit test, and for being environment-independent i want to embed the data file in my assembly. How can i reference then in the DataSourceAttribute of ...
4
votes
2answers
1k views
Possible to use TestNG DataProvider AND test suite Parameters?
Does anyone know if there is a way to use a TestNG DataProvider with a test at the same time as using the @Parameter annotation? Our test suites have some constant configuration information that is ...
3
votes
0answers
122 views
Data Driven Testing with cppunit
I'd like to make some data-driven tests using cppunit.
I thought I saw a while ago that a version of RowTest was ported to cppunit, but now I can't seem to find it anywhere.
What are some ways to do ...
3
votes
1answer
313 views
Can you build your own MSTEST DataSource
I have been looking for a way to build my own DataSource for data driven unit tests in MSTEST. I have not found any documentation how to do this or any base class or interface that I need to ...
3
votes
8answers
3k views
Data-driven tests with jUnit
What do you use for writing data-driven tests in jUnit?
(My definition of) a data-driven test is a test that reads data from some external source (file, database, ...), executes one test per ...
3
votes
2answers
683 views
Data-driven tests in Cucumber
I've got to test a message-routing application, whose functionality is broadly as follows:
- message gets sent to app
- app examines message
- message gets forwarded somewhere, based on the content of ...
2
votes
1answer
44 views
Data Drive Unit Test - Programatically Skipping Rows
Is there a way to programatically skip rows in a data drive unit test? I want to run all rows on our build server, but only one row when debugging.
2
votes
3answers
720 views
Data-driven testing in NUnit?
In MSTest you can do something like:
[TestMethod]
[DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "testdata.csv", "testdata#csv", DataAccessMethod.Sequential)]
public void ...
2
votes
1answer
191 views
Is there an MBUnit attribute to run Row tests in the order they were defined
I've tried googling around for this but have found nothing. Basically, I'd like to run each row in the order I defined it. For example, if I have this:
[Row("a")]
[Row("b")]
[Row("c")]
[Test]
...
1
vote
2answers
202 views
Data driven unit tests problem
I'm having some troubles getting my unit tests to be setup to use an Excel .xlsx data source.
My App.config file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
...
1
vote
1answer
132 views
Duplicate the behaviour of a data driven test
Right now, if you have a test that looks like this:
[TestMethod]
[DeploymentItem("DataSource.csv")]
[DataSource(
Microsoft.VisualStudio.TestTools.DataSource.CSV,
"DataSource.csv",
...
1
vote
1answer
338 views
Data driven integration test tools for java
I'm facing what I would think is a common problem, but I haven't found much discussion or existing tools to address it. I am trying to set up an integration test system (already having a strong suite ...
1
vote
1answer
856 views
Data driven testing in MSTest - problem with TestContext.DataRow
I'm having essentially the same problem as the question linked below, but I cannot seem to get it to work. I'm getting "cannot apply indexing [] to an expression of type System.Data.DataRow". As far ...
1
vote
1answer
271 views
How to pass a string parameter to an mbunit factory method?
I have a single function that generates variations for a series of unit tests given a string parameter. How can I use the factory attribute (or some alterative method) that takes additional takes a ...
1
vote
1answer
451 views
Unit test problem with DataSource attribute [C#]
I try make my first simpel Data Driven Test.
I created db (UnitTestsDb) with MS SQL Managmet studio, and also I created one db table (UsersTab).
I try use this db in unit test. Code is here:
...
1
vote
1answer
1k views
Problems with data driven testing in MSTest
I am trying to get data driven testing to work in C# with MSTest/Selenium.
Here is a sample of some of my code trying to set it up:
[TestClass]
public class NewTest
{
private ISelenium selenium;
...
1
vote
0answers
770 views
Extending Microsoft.VisualStudio.TestTools.DataSource.XML
I'm writing data driven unit tests using an Xml datasource in C# VS2008.
Attributes look something like this and everything works awesomely.
[DeploymentItem("HtmlSchemaUrls.xml")]
...
1
vote
1answer
415 views
Running unit tests from within VS2008 vs using mstest on the command line
I have recently encountered some inconsistencies in running unit tests inside VS2008 vs running the same unit tests with mstest on the command line.
My scenario is a bit advanced, so I have probably ...
1
vote
3answers
864 views
Data-driven unit testing - Problem with CSV encoding?
I have the following CSV file that is used in my data-driven unit test:
File;expected
Resources.resx;default
Resources.de.resx;de
AttachmentDetail.ascx.it.resx;it
SomeOtherFile.rm-CH.resx;rm-CH
...
0
votes
0answers
38 views
How to do visual Studio Data driven test using multiple tables in XML
<?xml version="1.0" encoding="utf-8" ?>
<Listing>
<Data>
<InputParameters>
<InputID>1600</InputID>
...
0
votes
1answer
363 views
Is there a way to use testNG with WebDriver so as to do data driven testing?
I have successfully created a data driven framework with selenium 1 and trying to do the same using selenium 2 (WebDriver). I was doing some basic R and D. My code is as below.
import ...
0
votes
2answers
188 views
Difference Between Data Driven and Keyword Driven Testing?
I searched already to see differences between data and keyword driven testing on Google but I did not find an enough answer for me.
0
votes
1answer
294 views
TeamCity MSTest Not Reporting All Tests: Failed to read testDuration
I am pretty new to Team City and Jet Brains products in general.
I'm using MSTest for running some tests (VS Unit Tests). I was able to configure Team City to run the tests using a metadata file and ...
0
votes
1answer
724 views
How to create DataSource file outside main test method
[TestInitialize()]
public void MyTestInitialize()
{
XmlTextWriter writer = new XmlTextWriter("DataFile.xml", Encoding.UTF8);
writer.Formatting = Formatting.Indented;
...
0
votes
3answers
429 views
DbUnit for C++?
We're developing in C++ under Linux and about to set up automated tests. We intend to use a testing framework like CppUnit oder CxxTest. We're using Ant to build the software and we will also use it ...