use of java.security.CodeSigner in project j2objc by google.
the class CodeSignerTest method testCodeSigner_01.
/**
* timestamp can be null
*/
public final void testCodeSigner_01() {
try {
CodeSigner cs = new CodeSigner(cpath, null);
assertNotNull(cs);
} catch (Exception e) {
fail("Unexpected exception");
}
}
Aggregations