예제 #1
0
 public function testDatedPrice()
 {
     $xml = new \XMLWriter();
     $xml->openMemory();
     $xml->setIndent(true);
     $xml->setIndentString("\t");
     $node = new DatedPrice(new \DateTime(), new \DateTime(), CurrencyAmount::factory(1, 'USD'));
     $node->setStartDate(new \DateTime())->setEndDate(new \DateTime())->setPrice(CurrencyAmount::factory(1, 'USD'));
     $node->writeXml($xml, 'DatedPrice');
     $dom = new \DOMDocument();
     $dom->loadXML($xml->outputMemory(true));
     $this->assertTrue($dom->schemaValidate(__DIR__ . '/../../../../XSD/DataType.xsd'));
 }