Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
3k views

How do I get the default temporary directory on Mac OS X?

I'd like to create some directories of data for some unit tests and I'd like these directories to be in the default temporary directory for the user. I could just create a subdir under /tmp I ...
8
votes
1answer
658 views

AutoFixture vs NBuilder

I'm seleting tool for populating my .net models (poco) with test data. I'm actually mocking wcf services and need to populate datacontract objects with test data. Found a huge number of test data ...
6
votes
7answers
262 views

Creating & rolling back test data with SQL server

I am creating a series of web automation tests which require test data to be in a database (SQL Server 2008). To generate the required data for each test I have to call some C# code which will insert ...
4
votes
1answer
1k views

iPhone simulator - how to detect when app is running on simulator (so can setup test data)?

Any sample code that would show me how to, in my iPhone application code: How to detect if the application has just been DEPLOYED to be run to a simulator (and not a device) [if "Deployed" isn't ...
2
votes
8answers
256 views

What are some good online sources for data sets?

Some time ago I came across as site online who's sole purpose was the collection of various data sets, location data, district census data, or whatever sets community members were interested in ...
1
vote
3answers
351 views

How can i fill my mysql tables with test data of about 100,000 records?

I know that i will have to write some sort of script for this but? can you guys guive me a go ahead on hwo to do it as i havent done it before. Thanks
1
vote
3answers
593 views

Test Data For Visa or Mastercard

need a virtual or test data for visa or master card to test my system like Authorization code, card number and expiry date ????
1
vote
4answers
473 views

Test data generation tool

Is there any tool to generate test data based on specific requirements? e.g. Size, file type
0
votes
2answers
116 views

Preparing data for a SpecFlow scenario

Another specflow ( related) question :) I'm going to test a complex scenario which expects several other steps to have performed prior to it. For example , it can be equivalent to have proper ...
0
votes
1answer
217 views

define seed script and give example of 1 for cakephp on mysql

Read this article via Hacker monthly magazine feb 2011. There is a part talking about seed scripts. 1) Define what a seed script is. 2) Please give a simple example of a seed script for a webapp ...
0
votes
2answers
91 views

How can I pay only once to provide the same expensive data source to multiple unit tests?

G'day! I have 4.6GB of test data in 220,000 files. A bulk test requires finding, matching, and unzipping pairs of the files. I want to run multiple unit tests across each pair. It'll take a ...
0
votes
1answer
540 views

Cucumber & test data management for non-Ruby apps

I'm testing an app that's basically a message-handling application - a message comes in, it's content is analysed, then it's sent somewhere else for processing. The app isn't built in Ruby. As you ...