Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
676 views

Database integration tests

When you are doing integration tests with either just your data access layer or the majority of the application stack. What is the best way prevent multiple tests from clashing with each other if they ...
4
votes
3answers
90 views

Complete db schema transformation - how to test rewritten queries?

Our database is poorly designed all the way around (we inherited it). I've reworked the schema to something useable and maintainable. Quite a few tables and columns have been dropped, many columns ...
3
votes
1answer
177 views

PHPUnit Database Testing. Fixtures not set?

this post was updated on 17 July 1:35PM UTC+8 I have something like require_once 'PHPUnit/Extensions/Database/TestCase.php'; class TestTest extends PHPUnit_Extensions_Database_TestCase { public ...
2
votes
3answers
103 views

Generating dummy data for my web application - looking for dictionaries

Sorry if this is off topic - but it is certainly programming related. I need to test my web application at scale (concurrent users and amount of data in system). For the latter, I need some way of ...
2
votes
1answer
103 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
6answers
499 views

How to delete all database data with NHibernate?

Is it possible to delete all data in the database using NHibernate. I want to do that before starting each my unittests. Currently I drop my database and create it again but this is not acceptable ...
2
votes
3answers
146 views

What is good way of doing Database Unit testing

We are using Power Designer for Database Modelling and whenever something is changed in model (column name, datatypes etc) have go back and test all depended stored procedures and fix them ...
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
30 views

Automatic Database Filler : ORM, Performance, … testing purposes

I'm interested in software tool, which can fill up my database based on parameters with some random data. Doesn't matter if it is something based on desktop application, online tool What it should ...
0
votes
1answer
81 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 ...
0
votes
3answers
95 views

What is the best way to do testing database (MYSQL spesific)

Right now i'm on testing something in a database. It's a wordpress database. i have to write and delete and do other operation on it. As you know it, it has indexing mechanism that will always make ...
0
votes
3answers
211 views

DbUnit how to guard against multiple tests running at the same time?

I am working on a test environment for a project, and am looking into using DbUnit.NET to do a lot of the database interaction testing. I do have one very big question though: We are running against ...