The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

Hsql create testdata from existing database

Does anybody know a way to generate complex testdata using an existing database for in memory hsqldb? So my junit tests will be able to use a part of correct data. The concrete problem is the ...
0
votes
0answers
52 views

Weka Initialize Evaluation for test

I have a question about weka using java code. I want to know how to initialize an Evaluation variable to use it with a previously saved model and test data. I first train the model by doing this: ...
0
votes
0answers
51 views

ksmooth cross validation

I have some training data and use them to do the kernel smooth. fit1<-ksmooth(x, y,kernel='normal',bandwidth=1) fit2<-ksmooth(x,y,kernel='normal',bandwidth=3) ...
0
votes
1answer
94 views

where can I get a large amount of demo data

I'm trying to set up a large amount of data in elasticsearch for performance testing etc. I've got a little program which will split up an html file into paragraphs and turn them into a document to ...
1
vote
2answers
74 views

Load fixtures to Testdb with PHPUnit and extbase

I search for a way to load test-data to a MySQL in my phpunit testcase. I use typo3 4.5 and want to test my pages-override and some functions in my testcase. I don't want to create all models ever and ...
-1
votes
1answer
61 views

How can I specify the test data range in Power Designer 16 for specific fields? [closed]

I'm trying to generate test data for Physical Model. But some fields needs to be specified, and another is not.
0
votes
1answer
55 views

Cross browsers testing - how to ensure uniqueness of test data?

My team is new to automation and plan to automate the cross browsers testing. Thing that we not sure, how to make sure the test data is unique for each browser’s testing? The test data need to be ...
1
vote
1answer
105 views

nBuilder Testdatagenerator and Reflection

I'm using nBuilder to generate some Testdata for my application. First I tested it and it worked fine. An easy Example: Customer customer = Builder<Customer> .CreateNew() ...
0
votes
1answer
55 views

Is there a possibility to use mysqlimport for timestamps-column?

I have some timestamp-columns in my table who can be null, but i want to fill them with testdata through mysqlimport. Is there maybe a possibility to give the timestamp parameter through the ...
1
vote
2answers
293 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 ...
7
votes
1answer
6k 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 ...
0
votes
1answer
573 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 ...
6
votes
6answers
481 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
3answers
3k 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
20
votes
1answer
2k views

AutoFixture vs NBuilder [closed]

I'm selecting 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 ...
2
votes
3answers
1k 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 ????
0
votes
2answers
103 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
704 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 ...
2
votes
5answers
1k views

Test data generation tool

Is there any tool to generate test data based on specific requirements? e.g. Size, file type
3
votes
8answers
516 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 ...
16
votes
5answers
6k 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 ...