blah blah blah is here! blah blah » Close

0
votes
0 answers

Using sql lite with nunit for testing

I am interesting in using sql-lite for unit testing, or integration testing. What do I need to do to setup the database in-memory? I am using nhibernate and I believe many use this approach to test their domain model and CRUD operatio ...

2
votes
1 answers

Nunit reference not found

I have following code: [code] using System; using System.Collections.Generic; using System.Linq; using System.Text; using nunit.framework; [/code] { Inserting other Code} Now I have added nunit.framework by Add reference--&g ...

1
votes
2 answers

Is it really practicle to write unit tests for all your classes/methods?

I haven't done the unit testing thing really but I am curious for those of you with more experience with unit testing, is it really practical to write unit tests for all your classes and methods? Or to be more realistic, should one just ...

Feedback