Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
120 views

Test data generator for JPA or Hibernate

Are there any tools or libraries that can be used to generate test data using JPA or entity beans? I believe this will be very helpful for unit testing where we can have an in memory database with ...
1
vote
3answers
48 views

Save object in debug and than use it as stub in tests

My application connects to db and gets tree of categories from here. In debug regime I can see this big tree object and I just thought of ability to save this object somewhere on disk to use in test ...
1
vote
2answers
376 views

Examples for creating stub data structures with dynamic JVM Languages?

Over the years, I think I have seen and tried every conceivable way of generating stub data structures (fake data) for complex object graphs. It always gets hairy in java. * * * * ...
0
votes
1answer
365 views

using lazy C++ for stub generation

Have you ever used lazy C++? I am trying to create .CPP files out of .H files. In forum I read that it is possible with your tool but I tried touse it and I didn't succeed. Can you help me? I used ...
0
votes
2answers
542 views

Unit testing - How to set up test data when stubbing database data

In our unit testing, I've got a stub object that is creating a set of data in memory to be used during unit testing so that the live database is not used. I have unit tests that check the number of ...