Exemplo n.º 1
0
 @Test
 public void testIsTrueOPT1() throws SchemagenOptionsConfigurationException {
   SchemagenOptions so0 = new SchemagenOptions();
   so0.setOption(OPT.DOS, true);
   assertTrue(so0.isTrue(OPT.DOS));
 }
Exemplo n.º 2
0
 /**
  * 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));
 }