File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java in General and the fly likes DBUnit Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "DBUnit" Watch "DBUnit" New topic
Author

DBUnit

Deyna Cegielski
Ranch Hand

Joined: Nov 24, 2004
Posts: 60
Hi, im having trouble performing assertions of datasets and tables due to null values in some of the columns.

Consider the table TBL with columns COL1, COL2, COL3, COL4 COL5 and COL3 is optional.

My initial dataset would look like this (as this would be the norm for a row in this table):

<dataset>
<TBL COL1="val" COL2="val" COL4="val" COL5="val"/>
</dataset>

Now, i want to DELETE this row, so my expected dataset would be:

<dataset>
<TBL/>
</dataset>

So when create the actual dataset and compare that against the expected dataset they are exactly the same (if i output them to xml) but the assertion fails with a column count error (expected 0, found 5).

I dont understand why because i am comparing datasets and not tables (and columns).

Any help would be appreciated.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: DBUnit
 
Similar Threads
getParameterValues []
Making the text field width match.
Returning just a STRING from.......
createNativeQuery Question
Question of using SqlResultSetMapping