@Test public void testIsTrueOPT1() throws SchemagenOptionsConfigurationException { SchemagenOptions so0 = new SchemagenOptions(); so0.setOption(OPT.DOS, true); assertTrue(so0.isTrue(OPT.DOS)); }
/** * Test method for {@link SchemagenOptions#isTrue(jena.schemagen.SchemagenOptions.OPT)}. * * @throws SchemagenOptionsConfigurationException */ @Test public void testIsTrueOPT0() throws SchemagenOptionsConfigurationException { SchemagenOptions so0 = new SchemagenOptions(); assertFalse(so0.isTrue(OPT.DOS)); }