The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
126 views

Why does data driven unit test fail in vs2012 when it worked fine in vs2010?

I have some data driven unit tests that were working just fine in Visual Studio 2010. These tests were implemented using the following pattern. [TestMethod()] ...
0
votes
1answer
33 views

How do I set a cell value in an Excel file using Sahi Pro _getExcel API?

So here is my script: //Get a handle to the Excel sheet var $db = _getExcel("C:\\Users\\datasource.xlsx","Sheet1"); //Get Data var $rs=$db.getData(); //Set a random number to append to this group ...
0
votes
0answers
22 views

Unable to pull numers string from csv file in process of data driven testing

I am trying to use in the process of data driven testing a csv file data. Letters strings such as name or email pulled ok. But when it comes to numbers it doesn't work. The file content is: ...
1
vote
1answer
51 views

Data Driven Test Removes Whitespace

I am writing a unit test to test the following method. public void MyMethod(string parm1) { // Validate parm1. string[] invalidTokens = new string[] { "/", "{", "}", ".", "--", ";", " ", ",", ...
0
votes
0answers
32 views

Lists or Arrays as parameter in easytest-driven tests

this question is very easystest-specific (but i don't know a better place to ask). Is there a way to use parameters of type Array or List? Is there probably a separator character that could be used ...
0
votes
3answers
72 views

How to design a data driven JUnit test class

@Parameters public static Collection data() throws IOException { ArrayList<String> lines = new ArrayList(); URL url = ...
0
votes
0answers
55 views

How to combine JUnit4 dynamically created testsuite with PowerMock

I want to apply this pattern Current framework for data driven testing of java apps (spring based) to my tests. It worked well as posted, but my actual test is using PowerMockRunner and ...
0
votes
0answers
38 views

How data driven testing can be done in iOS automation scripting in javascript (using Instruments tool)?

I have to execute data driven test cases. Is it possible in Instruments tool using javascript? JSON file type is used for storing the database.
0
votes
0answers
272 views

Data-driven testing in Selenium RC 2

I wanted to make my test data-driven and I use 3 extensions to do that (FlowControl, include and data-driven). Everithing works fine in IDE. But runnung testsuite in RC ...
0
votes
0answers
58 views

Test result in jmeter included inputs

I'm working with Jmeter and I' trying to do the data driven testing on an application. I have a problem: I can set a lots of different Parameter to save in the Jmeter log file after testing using ...
-1
votes
1answer
434 views

Read data from csv file using java in webdriver

How to read data of each cell in Selenium WebDriver using Java? I have tried with following code: CSVReader reader = new CSVReader(new FileReader("D:/data1.csv")); expectedLabels = ...
3
votes
2answers
439 views

Data Driven Testing for a database web application

I have a database web application and I need to see all the possible inputs and all the possible outputs of this application (using Selenium or Jmeter). Actually I tried to understand how the "Input ...
0
votes
1answer
191 views

Data Driven testing with Junit

I am new to junit concept. Can anyone explain to me clearly what the Data Driven concept is? And another other question would be if we can write two RunWith-annotated methods in one junit class. ...
0
votes
0answers
155 views

Data Driven ms-test unable to find xlsx file

I'm pulling my hair out with this one! I've tried everything I could and just cant get it to run the unit tests! can anyone see whats wrong? [DataSource( "System.Data.OleDb", ...
0
votes
0answers
33 views

Data Driven MsTest unable to find xlsx file [duplicate]

Possible Duplicate: Data Driven ms-test unable to find xlsx file I'm pulling my hair out with this one! I've tried everything I could and just cant get it to run the unit tests! can anyone ...
4
votes
0answers
734 views

Data driven tests generated in ClassInitialize: no longer working in Visual Studio 2012

I have upgraded from Visual Studio 2010 to Visual Studio 2012. In my unit test project, I have a [ClassInitialize] method which generates a CSV file which I then feed into a data-driven [TestMethod] ...
0
votes
0answers
54 views

DataSource attribute missing from WinRT testing framework?

I'm writing an app for Windows 8. I need to do some data-driven testing but I can't find DataSource attribute in WinRT version of MsTest. Does someone have a solution to write data-driven tests using ...
0
votes
1answer
106 views

soapUI DataDriven Test Fails On First Run

So I have the following request: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> <soapenv:Body> <ns2:GetFacilityRequest ...
1
vote
2answers
715 views

Visual Studio Load Test to simulate many users in Data Driven fashion?

I'm trying to load test a web service. I've got a simple method that takes 2 params that get sent to the web service and returns the response, and I created a Unit Test from this method. Because I ...
0
votes
0answers
140 views

ODBC Error in configuring excel file with mstest

In my data driven MSTEST application am trying to configure Excel file in app.config as follows <configSections> <section name="microsoft.visualstudio.testtools" ...
0
votes
1answer
164 views

Data driven tests using nested xml data file

I need to write a unit test driven by a data file that contains collections of data. For obvious reasons a csv file isn't appropriate, but XML suggests itself. However I can't seem to get it to work. ...
0
votes
0answers
270 views

Data driven database unit test in VS 2010

I wrote a simple data driven unit test that calls a stored procedure passing it a parameter contained in a separate table. For each row in that test data table, the stored procedure gets called. This ...
0
votes
1answer
312 views

Concatenating strings in DataSource for data-driven unit test

I am experiencing a strange problem with a data driven unit test. The data is stored in an xls-file. When I use the following connection string, everything works fine. [TestMethod()] ...
1
vote
1answer
203 views

Test Driven unit testing with stored procedure in VS 2010

I have a class (Not (DAL)) that get's data from DB and give it to me in required format(in specific class format). Now i need to write a unit test case, but TestContext Data row always return me ...
3
votes
2answers
575 views

How do you get the iteration / line number from TestContext in data driven tests?

I've implemented a data driven test using MsTest framework. I was wondering if there was a way to get the iteration / line number of the current test code from the TestContext object? As far as I ...
0
votes
1answer
236 views

Allow own TestContext class to inject different connections Strings inVisual Studio Unit Test Project

In MBUnit I can annotate my Test class with a Factory and multiple getter returning an oracle/sql/mysql connection string which can be obtained by every test method in the test class. How can I do ...
5
votes
5answers
401 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", ...
3
votes
3answers
3k 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> ...
2
votes
1answer
151 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.
1
vote
1answer
2k 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
1k 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.
1
vote
1answer
564 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", ...
0
votes
1answer
594 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 ...
1
vote
1answer
872 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 ...
3
votes
1answer
3k 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
537 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 ...
4
votes
3answers
3k 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
576 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
1answer
874 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: ...
3
votes
1answer
3k 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; ...
4
votes
1answer
483 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 ...
4
votes
1answer
489 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 ...
7
votes
11answers
6k 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 ...
0
votes
1answer
1k 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; ...
3
votes
2answers
1k 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 ...
4
votes
1answer
1k 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
492 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 ...
2
votes
2answers
1k 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 ...
8
votes
2answers
942 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 ...
6
votes
2answers
3k 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 ...

1 2