Tagged Questions

NDbUnit is a .NET library that can be used to manage database state during unit testing.

learn more… | top users | synonyms

5
votes
4answers
7k views

Getting XML Schema from MS SQL Database

Is it possible to generate a XML Schema of a Database programatically with .Net and C#? I want to look into NDbUnit but for big databases it would not really be feasible to make a Schema manually? ...
2
votes
1answer
178 views

T4 template to generate a typed dataset

Is there a T4 template to generate a typed dataset? I am using NDBUnit for testing and I would like to have the XSD automatically updated when I change my database schema. Ideally I would like the ...
1
vote
1answer
259 views

NDBUnit schema error

I've been searching for an answer for quite some time without any luck. I'm using NDbUnit for my test data and I want to be able to generate my XSD files automatically. I don't want to have to ...
1
vote
1answer
109 views

Verifying NHibernate Mappings with NDBUnit

I'm currently using NHibernate in a project and am using NDBUnit to populate a DB with data for my unit tests. What I'd like to do is verify the XML used by NDBUnit against the class instances ...
1
vote
1answer
133 views

Problem with computed column with NDBUnit

I am loading data for tests in tables using xml and ndbunit.But,for a table having computed column,I am having problem.I get this error The column "xyz" cannot be modified because it is either a ...
0
votes
1answer
22 views

using other schema except dbo in ndbunit

I have a project with Ndbunit test that works well for dbo's tables. when I am using tables in other schema(for example schema.tableName) I get an Error. the Error is : > ...
0
votes
0answers
21 views

Perform update on an existing row with NDbUnit

When I attempt an update with PerformDbOperation(DbOperationFlag.Update) using NDbUnit, I am getting an the following exception: Concurrency violation: the UpdateCommand affected 0 of the expected ...
0
votes
0answers
39 views

NDbUnit does not set a primary key field specified in the XML when the column is an Identity column

I am using NDbUnit to unit test my data access layer. Everything has been working fine when constructing the XSD and associated XML files that are used to populate various tables with rows of data. ...
0
votes
2answers
86 views

NUnit Testing show a form and populate its textbox from dataset in TestClass

I am new to NUnit, I have written my and in a test class for vb.net and it works as follows: A stored procedure is executed and the result is saved in an xml file with the help of a dataset. What ...
0
votes
1answer
67 views

Is it possible to keep NDbUnit test data in separate XML files?

I'm looking at using NDbUnit to help with the unit testing of an application. As the question title states, I'm wondering if it is possible to keep NDbUnit test data in separate XML files. I have ...
0
votes
2answers
219 views

Read/Load multiple XML in a single test initialize with NDbUnit

I am trying to use the NDbUnit. I have created seperate XSD for each table instead of one large XSD for complete database. My tests run fine when I use only single XSD and singe xml read. However ...
0
votes
0answers
200 views

XSD generation from a SQL Server database using schemas

I'm willing to use NDbUnit on a SQL Server database which uses schemas. I have to generate the XSD schema from the database. Visual Studio has a tool to do that, but Visual Studio 2005 doesn't ...
0
votes
2answers
258 views

NDbUnit MySQL Assembly Version Conflict

I am trying to use NHiberanate with NDbUnit but I cannot as NDbUnit tried to load MySql.Data version 1.0.10.1 and NHibernate tries to load version 6.2.2.0 and I can only reference one of them. Here ...
0
votes
1answer
78 views

Giving GUID for data using NDBUnit

I am using NDBUbit to load data from XML file.Right now,I am manually giving GUID for each record(our primary key for all tables is unique-identifier) in the xml file.But,I wonder if there is a better ...
0
votes
1answer
808 views

Unit testing using NDBUnit framework

Am writing unit tests for an app that has matured a lot with time..We are using NDBUnit as the test cases become independent of each other..while we started the development of this app the DB schema ...
0
votes
2answers
216 views

Using NDbUnit with tables that have a table schema

I am having issues using NDbUnit with tables that have their own schema - ie: CREATE TABLE MYSCHEMA.MyTable01 ( Id int NOT NULL, Description varchar(50) NOT NULL ) Is this a supported ...
0
votes
1answer
207 views

Problem with loading xml data into ndbunit

I am having problem loading the testdata.xml into ndbunit, I followed http://code.google.com/p/ndbunit/wiki/QuickStartGuide, but the test data is not loaded when I run my unit test in NUnit. Is ...