hakandilek / xmdl

Automatically exported from code.google.com/p/xmdl
0 stars 0 forks source link

Boolean types are ambiguous on DAO tests #81

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The following output on testAddAndRemoveJob() method should be wrapped like
the following:

        assertEquals(true, job.isRequireQualification());
        assertEquals(true, job.isRequireInsurance());

Wrapped:

        assertEquals(new Boolean(true), job.isRequireQualification());
        assertEquals(new Boolean(true), job.isRequireInsurance());

Original issue reported on code.google.com by hakandi...@gmail.com on 7 Aug 2008 at 5:48

GoogleCodeExporter commented 9 years ago
Fixed with r487

Original comment by hakandi...@gmail.com on 7 Aug 2008 at 6:07