42 lines
1.1 KiB
XML
42 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Licensed under European Union Public Licence (EUPL) version 1.2.
|
|
|
|
-->
|
|
<testSet xmlns="http://difi.no/xsd/vefa/validator/1.0" configuration="tc434-ubl">
|
|
<assert>
|
|
<scope>BR-16</scope>
|
|
|
|
</assert>
|
|
<test>
|
|
<assert>
|
|
<description>Verify that each invoice has an invoice line</description>
|
|
<success>BR-16</success>
|
|
|
|
</assert>
|
|
<Invoice
|
|
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
|
xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
<cac:InvoiceLine>
|
|
</cac:InvoiceLine>
|
|
</Invoice>
|
|
</test>
|
|
|
|
<test>
|
|
<assert>
|
|
<description>Trigger error if invoice line is missing</description>
|
|
<error>BR-16</error>
|
|
|
|
</assert>
|
|
<Invoice
|
|
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
|
xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
<!-- <cac:InvoiceLine></cac:InvoiceLine> -->
|
|
</Invoice>
|
|
</test>
|
|
|
|
</testSet>
|