示例#1
0
 /**
  * Test method for {@link Datapoint#create(XMLReader)}.
  *
  * @throws KNXMLException
  */
 public final void testCreate() throws KNXMLException {
   final XMLReader r = XMLFactory.getInstance().createXMLReader(dpFile);
   assertTrue(Datapoint.create(r) instanceof StateDP);
   r.close();
 }