Skip to content

Commit

Permalink
Slightly expand test case
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-allan committed Oct 3, 2017
1 parent 9e14447 commit 23794c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/org/cellprofiler/ome/TestOmero.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.lang.reflect.InvocationTargetException;
Expand Down Expand Up @@ -52,6 +53,8 @@ public void testOmeroRtypeUsage()
method = klass.getMethod("unwrap", omero.RType.class);
assertNotNull(method);
object = method.invoke(null, object);
assertNotNull(object);
assertEquals(1, object);
}

}

0 comments on commit 23794c5

Please sign in to comment.