-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Second iteration of UI tests for datamapper
this part is enough to have non-regression tests for #747 when launched on Windows Signed-off-by: Aurélien Pupier <[email protected]>
- Loading branch information
Showing
3 changed files
with
99 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
|
||
<xs:element name="shiporder"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="orderperson" type="xs:string" /> | ||
<xs:element name="shipto"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="name" type="xs:string" /> | ||
<xs:element name="address" type="xs:string" /> | ||
<xs:element name="city" type="xs:string" /> | ||
<xs:element name="country" type="xs:string" /> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="item" maxOccurs="unbounded"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="title" type="xs:string" /> | ||
<xs:element name="note" type="xs:string" minOccurs="0" /> | ||
<xs:element name="quantity" type="xs:positiveInteger" /> | ||
<xs:element name="price" type="xs:decimal" /> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="orderid" type="xs:string" use="required" /> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
</xs:schema> |