-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ::ROUTECOUNT_ALL, ::ROUTECOUNT_EXCLUDENORESPONSE constants.
- Loading branch information
=
committed
Apr 22, 2016
1 parent
2af4072
commit 60f9d58
Showing
4 changed files
with
88 additions
and
2 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
21 changes: 21 additions & 0 deletions
21
test/samples/custom/runtime/route_count/all_with_responsedeclaration.xml
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assessmentTest xmlns="http://www.imsglobal.org/xsd/imsqti_v2p1" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p1 http://www.taotesting.com/xsd/qticompact_v1p0.xsd" | ||
identifier="linear_route_count" title="Linear Route Count"> | ||
<testPart identifier="P01" navigationMode="linear" submissionMode="individual"> | ||
<assessmentSection identifier="S01" title="Section1" visible="true"> | ||
<assessmentItemRef identifier="Q01" href="./Q01.xml" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="identifier"/> | ||
</assessmentItemRef> | ||
|
||
<assessmentItemRef identifier="Q02" href="./Q02.xml" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="identifier"/> | ||
</assessmentItemRef> | ||
|
||
<assessmentItemRef identifier="Q03" href="./Q03.xml" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="identifier"/> | ||
</assessmentItemRef> | ||
</assessmentSection> | ||
</testPart> | ||
</assessmentTest> |
19 changes: 19 additions & 0 deletions
19
test/samples/custom/runtime/route_count/missing_responsedeclaration.xml
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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assessmentTest xmlns="http://www.imsglobal.org/xsd/imsqti_v2p1" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p1 http://www.taotesting.com/xsd/qticompact_v1p0.xsd" | ||
identifier="linear_route_count" title="Linear Route Count"> | ||
<testPart identifier="P01" navigationMode="linear" submissionMode="individual"> | ||
<assessmentSection identifier="S01" title="Section1" visible="true"> | ||
<assessmentItemRef identifier="Q01" href="./Q01.xml" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="identifier"/> | ||
</assessmentItemRef> | ||
|
||
<assessmentItemRef identifier="Q02" href="./Q02.xml" timeDependent="false"/> | ||
|
||
<assessmentItemRef identifier="Q03" href="./Q03.xml" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="identifier"/> | ||
</assessmentItemRef> | ||
</assessmentSection> | ||
</testPart> | ||
</assessmentTest> |