The test-data tag has no wiki summary.
0
votes
1answer
29 views
How to setup and teardown functional test data in Geb grails
I have many working/passing functional geb/spock tests (each extending GebReportingSpec) that are testing a web application with test data all created from the BootStrap.groovy at the beginning of the ...
0
votes
1answer
30 views
Methods adapted to satisfy unit tests. This just seems wrong
I have begun to dabble in unit testing, and have created a couple of tests that test one of my presenter methods. This testing requires a mock of my data access class, and one method in particular. ...
1
vote
1answer
90 views
Where can I find magnetic strip (track) test data?
I have written a library of functions that parses track 1 and track 2 data from magnetic strips on cards (credit cards, IDs etc.) as per ISO/IEC 7813. I am looking to test this library rigorously ...
0
votes
0answers
72 views
My 2 layer neural network gets only 2.05% test error rate on MNIST. Too low to be correct?
Is it at all reasonable to get this low of a test error rate? I doubt it, because the test error rates listed on the MNIST database website are higher than this, but the evidence otherwise seems ...
0
votes
0answers
10 views
Possibilities to apply SQL/MySQL testdata [closed]
I'm about to write a bachelor work about test data generation with help of different tools or scripts. The problem is, that I still don't know how to work with this data afterwards.
Where can I apply ...
1
vote
1answer
102 views
Creating test data: domain builder
I want to create test data for my tests with underlying in-memory database.
Common approach is to create some test_data.sql file and create test objects with inserts. And then reference these objects ...
0
votes
1answer
23 views
Data generation: generate one entity with a several date constraints
A quick one, I am looking for a tool for data generation. I have an entity with dates; the date it was made, a start date and an end date. I want the data generation to take care of this constraints:
...
2
votes
2answers
112 views
Creating test data for a bulk insert
I'm interested in learning some new skills and have been reading up about bulk inserts. So I have created two tables in sql server 2008 1) Client 2)ClientDetails, the set designs are as below:
...
0
votes
1answer
113 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 ...
0
votes
2answers
95 views
Getting generic test data for generic unit tests
I want to reuse generic tests, but how can I get generic test data?
I wrote my own IReadOnlyCollection<T> interface, and wrote some classes that use it.
Since the methods and properties ...
0
votes
3answers
294 views
NUnit data driven unit test with datasource
I have one data source like -4,-3,-3,-2,-1,0,1,2,2,3,4 , I have one function and this function can capture repeated number for example in this data source we have -3,2 are repeated .The repeated ...
3
votes
2answers
410 views
How to let Autofixture create an instance of a type that contains properties with an interface type?
I have such a class:
public class ViewModel
{
public IPagination<Data> List { get; set; } // interface!
public SearchFilter SearchFilter { get; set; }
public string Test { get; set; ...
1
vote
1answer
216 views
nodejs mongo, generate test data
I would like to populate my mongo with some test data.
I have defined mongoose models and I was wandering if it was possible to pragmatically create mongo documents using pre defined models.
For ...
0
votes
0answers
166 views
Weka cross validation wrong results
I am classifying 5 minutes of EEG data of 4 classes using a Bayesian Network.
When applying cross validation I get 100% correct results whereas when I use training and supplied testing data (the ...
0
votes
2answers
217 views
Creating test data, in databases, from XML
I'm looking for a framework which allows me to use XML to setup unit testing data.
I do a lot of development where a web front-end connects with multiple tables on one, or more, back-end database ...
3
votes
1answer
111 views
How to automatically create test data with builder that will take verifications into account
I am using NBuilder to create test data and my classes have a large number of properties so manual creation is out of question. Before I used NBuilder I copy pasted some SQL selects to csv files and ...
1
vote
1answer
97 views
Use business objects as return value from a test data builder class
The business object is Foo.cs
What if Foo`s properties run custom logic? Would it then not a bad idea to create Foo objects which could change the data inside the Foo object and it returns values I ...
4
votes
1answer
337 views
Generate test data in Raven DB
I am looking for a preferred and maintainable way of test data generation in Raven DB. Currently, our team does have a way to do it through .NET code. Example is provided.
However, i am looking for ...
1
vote
3answers
118 views
Productive data on the test system
I need some suggestions of how you handle your test data in manual UI tests. Our application needs data from a database to work and to being tested manually. Since we are dealing with sensitive data ...
5
votes
2answers
498 views
Random File Generator (again!)
I badly need a random file generator that generates a truly random, non-compressible dummy files.
I ended up with this delphi code. It works, but it's painfully sloooow
var
Buf : Integer;
...
2
votes
1answer
306 views
RSpec - Test against actual files, not mock data
I'm very new to RSpec, so this is quite a basic question. I'm writing something which parses a lot of data from a file, does some processing and returns a summarised result, which is all very lovely ...
1
vote
1answer
262 views
method to generate test data from real source database in oracle 11g
I have production database inOracle 11g - entire schema.
How can I use this to generate test data (all values garbled) with relationships maintained, (only string vales garbled not ids or numbers for ...
1
vote
2answers
201 views
Java/Groovy/Grails need to generate meaningful test data
I have a need to generate meaningful test data programatically using either Java or Groovy (Groovy preferred). The data I need includes First Name, Middle Name, Last Name, Address (City, Postal Code, ...
3
votes
1answer
64 views
Looking for an extensive set of email addresses in both good and wrong format for regular expressions testing
I would like to test a couple of regular expressions for email address validation, but I don't want to make up the testing set of addresses myself. I think I would not cover all the possibilities very ...
0
votes
1answer
326 views
Calling .CreateSourceQuery() on Navigation Property returns null when Unit Testing; works on actual database, how do I setup my test data to match?
I have a method which is taking my Entity Framework Entity and converting it into a DTO object. In this method I have parameters to skip and limit the number of related items to return. With small ...
2
votes
1answer
828 views
Active Directory - Test users and groups
I am wanting to test a tool which synchronises with Active Directory. I want a decent number of users and groups to give the utility a reasonably rigorous test. Does any know a way of populating AD ...
5
votes
4answers
1k views
List of mock valid/invalid Email Addresses for Unit Tests
By any chance does anyone know of a list of email addresses (don't need to be real) I can use for an email validation assembly for a unit test.
I've been looking for one and can't seem to find one, ...
0
votes
0answers
123 views
Random values consistent with a best-fit curve
I'm contemplating the generation of test data with interesting distributions.
I understand methods for the generation of uniform distribution and normal distribution, but how can I transform an ...
0
votes
1answer
391 views
Large sample database for HSQLDB?
I'm taking a database class and I'd like to have a large sample database to experiment with. My definition of large here is that there's enough data in the database so that if I try a query that's ...
1
vote
1answer
268 views
Representative sample test XML file
I'm looking for a somewhat representative sample test XML file for a typical application. It should contain all typical XML features, such as
Elements with and without attributes
Text (both ...
6
votes
2answers
672 views
Any good surname databases?
I'm looking to generate some database test data, specifically table columns containing people's names. In order to get a good indication of how well indexing works with regard to name based searches I ...
2
votes
1answer
243 views
Testdatageneration with AutoFixture: resolving ICollection<T> without mentioning every single T
I try to use AutoFixture 2 to generate testdata for EntityFramework4 classes that have ICollection member.
public class Parent
{
public virtual ICollection<Child1> Children1 { ...
1
vote
3answers
225 views
Looking for web page test text?
I am looking for sample text like below for this photoshop tutorial, what's language is it? Could you point me where to find such test text I have seen a lot times from tutorials and books for ...
8
votes
3answers
1k views
Populate tables with test data whilst maintaining relational integrity [closed]
I have a MySQL database with InnoDB tables, many of which have foreign keys.
I was going to write a script to populate the tables with test data (10-20k rows or more) but I thought I ought to ask if ...
4
votes
1answer
306 views
JUnit in android
I am familiar with JUnit testing in android..
My Question is if we are using calculator and we want to test addition operation..To test the addition operation if we are using more number of test ...
2
votes
1answer
356 views
Sample Database for Full Text Searching
I am looking to do some benchmarking on Full Text Search indexes in PostgreSQL, SQLServer and Lucene.
Any ideas on where to find a good big sample database to perform queries against?
Thanks a lot ...
2
votes
7answers
467 views
How to create big datasets for test purposes?
I need to test some charting classes. For these I want to create a big dataset of 1-2 million data! How can I create such big datasets?
thanks
10
votes
3answers
7k views
Spring/Hibernate testing: Inserting test data after DDL creation
I have a Spring/Hibernate webapp that has some integration tests that run on an in-memory HSQL database. Hibernate takes this blank database and creates all of my test tables and constraints thanks ...
1
vote
2answers
2k views
Dummy data generator
Can you suggest sites where I can generate dummy data based on my requirement for testing purposes of my project?
Note: I need a dummy data for usage of VMs and physical servers in terms of memory, ...
2
votes
6answers
209 views
Good test database on Windows to play around with data retrieval operations in SQL?
I need a test database to practice joins and other kinds of data retrieval operations in SQL.
What's a good free test database and RDBMS system to use on Windows?
5
votes
3answers
2k views
Traveling salesman example with known global optimum
I made a memetic algorithm in Python for traveling salesman problem.
However, all the test data (list of distances between cities) I've encountered lack the information of the best solution, so I ...
4
votes
5answers
1k views
Mock Object Data
I'd like to mock up object data, not the objects themselves. In other words, I would like to generate a collection of n objects and pass it into a function which generates random data strings and ...
2
votes
1answer
52 views
Generating data on unlevel background
I want to make an unlevel background and then generate some test data on that using Matlab. I was not clear when I asked this question earlier. So for this simple example
for i = 1:10
for j = 1:10 ...
1
vote
3answers
780 views
Where to find free-to-use, complex test databases?
I need a database for testing a data masking solution. Any database would do (Oracle/MSSQL flavor). I just need the schema / db definition. I have tools to generate data records. The magnitude of ...
1
vote
6answers
3k views
generate a random file using shell script
How can i generate a random file filled with random number or character in shell script? I also want to specify size of the file.
2
votes
1answer
118 views
Distributing appointments over a date range
I am trying to generate some test data.
Say I have 1000 appointments that I need to allocate over a date range.
Now I need to distribute these appointments such that there are twice as many ...
19
votes
3answers
10k views
How do I generate a random list of person names?
I need to generate a list of people's name randomly.
Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames.
--EDIT--
Just want to make it ...
0
votes
2answers
366 views
Test Data for Video Encoding
Image processing and compression algorithms are typically compared on sets of widely available, well known images.
Is there a collection of video files for the same purpose, that are publicly ...
3
votes
3answers
3k views
Simple Pseudo-Random Algorithm
I'm need a pseudo-random generator which takes a number as input and returns another number witch is reproducible and seems to be random.
Each input number should match to exactly one output number ...
7
votes
6answers
344 views
Persisting complex test data
We are using builder pattern to generate test data. These domain objects have relations between them. Our functional tests require these objects to be persisted.
Think about this model:
If I want ...

