Tagged Questions

2
votes
1answer
102 views

Microsoft demo database copyright, open source demo databases?

In my open source project which is licensed under LGPLv3 I need a small demo database. Project targets multiple databases so for consistency of tests it would be great to have some simple SQL script ...
2
votes
1answer
220 views

How to populate a test database in Android?

I have a test class that extends ProviderTestCase2<>. I would like to populate this test class database with data from some .db files. Is there some particular method to push some .db file into ...
2
votes
2answers
2k views

Can I flush my NHibernate session and get a new session without committing the transaction?

I'm using Castle ActiveRecord for persistence, and I'm trying to write a base class for my persistence tests which will do the following: Open a transaction for each test case and roll it back at ...
0
votes
1answer
80 views

VS2010 - DB unit tests for load testing

I've got problems with unit tests for load tests in VS2010 Ulimate. What I'd like to do is to test performance for Add and Remove (to/from DB) methods. AddCompany method returns added company, than ...