Tagged Questions
3
votes
1answer
178 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
6answers
502 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
147 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 ...
0
votes
0answers
27 views
Testing that a stored procedure maps correctly to an object in SQL Server
I am looking for a way to unit test our data access layer in a manner that asserts that we conform to a stored procedures schema and signature. Our application has a data access layer that consumes a ...
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
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 ...