| Author |
How to do unit testing against a MS Access 2007 Database?
|
Jacky Luk
Ranch Hand
Joined: Aug 02, 2012
Posts: 201
|
|
Tried DBUnit. But the exporting doesn't work.
Any other good software that is free for this purpose?
Thanks
Jack
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26489
|
|
Jack,
You can use pure JUnit and test your JDBC code. Beyond that, what features are you looking for?
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
Jacky Luk
Ranch Hand
Joined: Aug 02, 2012
Posts: 201
|
|
Jeanne Boyarsky wrote:Jack,
You can use pure JUnit and test your JDBC code. Beyond that, what features are you looking for?
Hello,
Do I test them one by one (the attributes inside a record) like this
void TestRetrieveRecord()
{
PatientRec r;
// Get the record
assertEquals(r.getFirstName(), "Peter");
assertEquals(r.getLastName(), "Jones");
}
Doing this one by one can be quite tedious. I am looking for a more convenient way
Thanks
Jack
|
 |
Jacky Luk
Ranch Hand
Joined: Aug 02, 2012
Posts: 201
|
|
Any suggestions?
Thanks
Jack
|
 |
 |
|
|
subject: How to do unit testing against a MS Access 2007 Database?
|
|
|