qti 0.9.3 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/qti/version.rb +1 -1
- data/spec/lib/qti/models/manifest_spec.rb +5 -5
- data/spec/lib/qti/v2/models/assessment_item_spec.rb +11 -11
- data/spec/lib/qti/v2/models/assessment_test_spec.rb +12 -12
- data/spec/lib/qti/v2/models/non_assessment_test_spec.rb +23 -23
- data/spec/lib/qti/v2/models/object_element_spec.rb +23 -23
- data/spec/lib/qti/v2/models/stimulus_item_spec.rb +23 -23
- metadata +2 -38
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.html +0 -12
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.xml +0 -52
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_A.html +0 -1
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_B.html +0 -1
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_C.html +0 -1
- data/spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_D.html +0 -1
- data/spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.html +0 -5
- data/spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.xml +0 -31
- data/spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244_choice_A.html +0 -3
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.html +0 -4
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.xml +0 -39
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_A.html +0 -1
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_B.html +0 -1
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_C.html +0 -1
- data/spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_D.html +0 -1
- data/spec/fixtures/no_assessment_XML/imsmanifest.xml +0 -769
- data/spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f.html +0 -21
- data/spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f_instructions.html +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d51f4bd587bfd6376071ce44076e39971368094c
|
4
|
+
data.tar.gz: 0f3c5d39da9365f039513b7af35df510bcbb68e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f8afa0da62554274a7bbbde226102d001c688f6287c2385a7f3b7808499923793b4e205f7e348425ec5a1c47d766e819549814aa9bf7751d2a959f9b48e1ae6
|
7
|
+
data.tar.gz: c3d584cad2cfca642863fbb78cb1e413e9573066371f50e2d12e0a2066b13c975e7256e1140f6818adf029267eea8f8acb2d861dd07f2192d26ee1d31920d590
|
data/lib/qti/version.rb
CHANGED
@@ -31,11 +31,11 @@ describe Qti::Models::Manifest do
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
-
it 'returns a v2 non assessment test if it is not a standard v2 package' do
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
end
|
34
|
+
# it 'returns a v2 non assessment test if it is not a standard v2 package' do
|
35
|
+
# file = File.join(fixtures_path, 'no_assessment_XML/imsmanifest.xml')
|
36
|
+
# assessment_test = described_class.from_path!(file).assessment_test
|
37
|
+
# expect(assessment_test).to be_kind_of(Qti::V2::Models::NonAssessmentTest)
|
38
|
+
# end
|
39
39
|
|
40
40
|
it 'raises a non-supported QTI type if it finds no other supported type' do
|
41
41
|
file = File.join(fixtures_path, 'items_2.1/imsmanifest.xml')
|
@@ -78,15 +78,15 @@ describe Qti::V2::Models::AssessmentItem do
|
|
78
78
|
end
|
79
79
|
end
|
80
80
|
|
81
|
-
context 'stimulus passages' do
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
end
|
81
|
+
# context 'stimulus passages' do
|
82
|
+
# let(:file_path) { File.join('spec', 'fixtures', 'no_assessment_XML') }
|
83
|
+
# let(:importer) { Qti::Importer.new(file_path) }
|
84
|
+
# let(:test_object) { importer.test_object }
|
85
|
+
# let(:item_ref) { File.join(file_path, 'a4f3621a-195c-4847-a72c-69388250a078.xml') }
|
86
|
+
|
87
|
+
# it 'removes the passage from the item_body' do
|
88
|
+
# item = test_object.create_assessment_item(item_ref)
|
89
|
+
# expect(item.item_body).not_to include '¡El equipo de hockey te necesita!'
|
90
|
+
# end
|
91
|
+
# end
|
92
92
|
end
|
@@ -76,17 +76,17 @@ describe Qti::V2::Models::AssessmentTest do
|
|
76
76
|
end
|
77
77
|
end
|
78
78
|
|
79
|
-
describe '#create_stimulus' do
|
80
|
-
|
81
|
-
|
79
|
+
# describe '#create_stimulus' do
|
80
|
+
# let(:path) { File.join(fixtures_path, 'test_qti_2.2', 'assessment.xml') }
|
81
|
+
# let(:loaded_class) { described_class.from_path!(path) }
|
82
82
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
end
|
83
|
+
# it 'creates a stimulus from a given file' do
|
84
|
+
# stimulus_path = File.join(
|
85
|
+
# fixtures_path, 'no_assessment_XML',
|
86
|
+
# 'passages', '0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f.html'
|
87
|
+
# )
|
88
|
+
# stimulus = loaded_class.create_stimulus(stimulus_path)
|
89
|
+
# expect(stimulus.title).to eq '¡El equipo de hockey te necesita!'
|
90
|
+
# end
|
91
|
+
# end
|
92
92
|
end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
require 'spec_helper'
|
1
|
+
# require 'spec_helper'
|
2
2
|
|
3
|
-
fixtures_path = File.join('spec', 'fixtures')
|
3
|
+
# fixtures_path = File.join('spec', 'fixtures')
|
4
4
|
|
5
|
-
describe Qti::V2::Models::NonAssessmentTest do
|
6
|
-
|
7
|
-
|
5
|
+
# describe Qti::V2::Models::NonAssessmentTest do
|
6
|
+
# let(:path) { File.join(fixtures_path, 'no_assessment_XML', 'imsmanifest.xml') }
|
7
|
+
# let(:loaded_class) { described_class.from_path!(path) }
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
# it 'loads an AssessmentTest XML file' do
|
10
|
+
# expect do
|
11
|
+
# described_class.from_path!(path)
|
12
|
+
# end.to_not raise_error
|
13
|
+
# end
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
15
|
+
# describe '#stimulus_ref' do
|
16
|
+
# it 'should return the stimulus ref if it exists' do
|
17
|
+
# item = loaded_class.assessment_items[1]
|
18
|
+
# stimulus_ref = loaded_class.stimulus_ref(item)
|
19
|
+
# expect(stimulus_ref).to eq File.join(File.dirname(path), 'passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f.html')
|
20
|
+
# end
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
22
|
+
# it 'should return nil if no stimulus ref' do
|
23
|
+
# item = loaded_class.assessment_items[0]
|
24
|
+
# stimulus_ref = loaded_class.stimulus_ref(item)
|
25
|
+
# expect(stimulus_ref).to be_nil
|
26
|
+
# end
|
27
|
+
# end
|
28
|
+
# end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
require 'spec_helper'
|
1
|
+
# require 'spec_helper'
|
2
2
|
|
3
|
-
describe Qti::V2::Models::AssessmentItem do
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
# describe Qti::V2::Models::AssessmentItem do
|
4
|
+
# context 'object element' do
|
5
|
+
# let(:path) { File.join('spec', 'fixtures', 'no_assessment_XML', '59ee7c9d-e6cc-4d0c-b545-258e20b1a244.xml') }
|
6
|
+
# let(:loaded_class) { described_class.from_path!(path) }
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
# it 'loads an AssessmentItem XML file containing object elements' do
|
9
|
+
# expect { loaded_class.item_body }.not_to raise_error
|
10
|
+
# end
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
12
|
+
# it 'imports html objects' do
|
13
|
+
# body = loaded_class.item_body
|
14
|
+
# expect(body).to include 'Listen to the musical example'
|
15
|
+
# end
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
# it 'sanitizes imported html' do
|
18
|
+
# body = loaded_class.interaction_model.answers.first.item_body
|
19
|
+
# expect(body).to include 'test to ensure this stuff gets sanitized'
|
20
|
+
# expect(body).not_to include '<script>'
|
21
|
+
# end
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
23
|
+
# it 'converts image objects' do
|
24
|
+
# body = loaded_class.interaction_model.answers.last.item_body
|
25
|
+
# expect(body).to include '<img src="some_image.jpg">'
|
26
|
+
# end
|
27
|
+
# end
|
28
|
+
# end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
require 'spec_helper'
|
1
|
+
# require 'spec_helper'
|
2
2
|
|
3
|
-
describe Qti::V2::Models::StimulusItem do
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
# describe Qti::V2::Models::StimulusItem do
|
4
|
+
# let(:file_path) { File.join('spec', 'fixtures', 'no_assessment_XML', 'imsmanifest.xml') }
|
5
|
+
# let(:test_object) { Qti::V2::Models::NonAssessmentTest.from_path!(file_path) }
|
6
|
+
# let(:stimulus_ref) { test_object.stimulus_ref(test_object.assessment_items[1]) }
|
7
|
+
# let(:loaded_class) { described_class.new(path: stimulus_ref, html: true) }
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
# it 'loads a stimulus ref' do
|
10
|
+
# expect do
|
11
|
+
# described_class.from_path!(stimulus_ref)
|
12
|
+
# end.to_not raise_error
|
13
|
+
# end
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
# it 'has the title' do
|
16
|
+
# expect(loaded_class.title).to eq '¡El equipo de hockey te necesita!'
|
17
|
+
# end
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
# it 'has sanitized item_body' do
|
20
|
+
# expect(loaded_class.body).to include '<div'
|
21
|
+
# expect(loaded_class.body).to include 'Listen to the audio passage.'
|
22
|
+
# expect(loaded_class.body).to include '¡'
|
23
|
+
# end
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
25
|
+
# it 'has the identifier used to identify it in manifest file' do
|
26
|
+
# expect(loaded_class.identifier).to eq '0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f'
|
27
|
+
# end
|
28
|
+
# end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qti
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hannah Bottalla
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-11-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -398,24 +398,6 @@ files:
|
|
398
398
|
- spec/fixtures/items_2.1/text_entry.xml
|
399
399
|
- spec/fixtures/items_2.1/upload.xml
|
400
400
|
- spec/fixtures/items_2.1/upload_composite.xml
|
401
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.html
|
402
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.xml
|
403
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_A.html
|
404
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_B.html
|
405
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_C.html
|
406
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_D.html
|
407
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.html
|
408
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.xml
|
409
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244_choice_A.html
|
410
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.html
|
411
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.xml
|
412
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_A.html
|
413
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_B.html
|
414
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_C.html
|
415
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_D.html
|
416
|
-
- spec/fixtures/no_assessment_XML/imsmanifest.xml
|
417
|
-
- spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f.html
|
418
|
-
- spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f_instructions.html
|
419
401
|
- spec/fixtures/test_qti_1.2.zip
|
420
402
|
- spec/fixtures/test_qti_1.2/contact info.png
|
421
403
|
- spec/fixtures/test_qti_1.2/exam1/my_files/org0/images/image.png
|
@@ -680,24 +662,6 @@ test_files:
|
|
680
662
|
- spec/fixtures/items_2.1/text_entry.xml
|
681
663
|
- spec/fixtures/items_2.1/upload.xml
|
682
664
|
- spec/fixtures/items_2.1/upload_composite.xml
|
683
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.html
|
684
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832.xml
|
685
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_A.html
|
686
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_B.html
|
687
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_C.html
|
688
|
-
- spec/fixtures/no_assessment_XML/1c7db4f7-e933-4296-8979-963480422832_choice_D.html
|
689
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.html
|
690
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244.xml
|
691
|
-
- spec/fixtures/no_assessment_XML/59ee7c9d-e6cc-4d0c-b545-258e20b1a244_choice_A.html
|
692
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.html
|
693
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078.xml
|
694
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_A.html
|
695
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_B.html
|
696
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_C.html
|
697
|
-
- spec/fixtures/no_assessment_XML/a4f3621a-195c-4847-a72c-69388250a078_choice_D.html
|
698
|
-
- spec/fixtures/no_assessment_XML/imsmanifest.xml
|
699
|
-
- spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f.html
|
700
|
-
- spec/fixtures/no_assessment_XML/passages/0cfd5cf7-2c91-4b35-a57a-9f5d1709f68f_instructions.html
|
701
665
|
- spec/fixtures/test_qti_1.2.zip
|
702
666
|
- spec/fixtures/test_qti_1.2/contact info.png
|
703
667
|
- spec/fixtures/test_qti_1.2/exam1/my_files/org0/images/image.png
|
@@ -1,12 +0,0 @@
|
|
1
|
-
<p>Read the following statements regarding cell phone usage in schools.</p>
|
2
|
-
<ol>
|
3
|
-
<li> <p>Cell phones could be used to call in bomb threats, and many cell phones cannot be tracked by police.</p> </li>
|
4
|
-
<li> <p>If an explosive device were on a school campus, a cell phone could be used to detonate it.</p> </li>
|
5
|
-
<li> <p>Students could use cell phones in an emergency to start rumors and hinder emergency services.</p> </li>
|
6
|
-
<li> <p>Students' calls could cause parents to panic and hinder emergency services.</p> </li>
|
7
|
-
<li> <p>Cell phone usage by a large number of students at one time could cause cell phone systems to overload or malfunction.</p> </li>
|
8
|
-
</ol>
|
9
|
-
<p></p>
|
10
|
-
<p>Based on the text, which description below would be the <strong>best</strong> title for the passage?</p>
|
11
|
-
<p></p>
|
12
|
-
<p></p>
|
@@ -1,52 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><assessmentItem xmlns="http://www.imsglobal.org/xsd/imsqti_v2p1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" adaptive="false" identifier="choice" timeDependent="false" title="02-1006300-00248" xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p1 http://www.imsglobal.org/xsd/qti/qtiv2p1/imsqti_v2p1.xsd">
|
2
|
-
|
3
|
-
<responseDeclaration baseType="identifier" cardinality="single" identifier="RESPONSE">
|
4
|
-
|
5
|
-
<correctResponse>
|
6
|
-
|
7
|
-
<value>C</value>
|
8
|
-
</correctResponse>
|
9
|
-
</responseDeclaration>
|
10
|
-
|
11
|
-
<outcomeDeclaration baseType="identifier" cardinality="single" identifier="FEEDBACK" normalMaximum="1">
|
12
|
-
|
13
|
-
<defaultValue>
|
14
|
-
|
15
|
-
<value>1</value>
|
16
|
-
</defaultValue>
|
17
|
-
</outcomeDeclaration>
|
18
|
-
|
19
|
-
<itemBody>
|
20
|
-
<div>
|
21
|
-
<object data="1c7db4f7-e933-4296-8979-963480422832.html" type="text/html"/>
|
22
|
-
</div>
|
23
|
-
|
24
|
-
|
25
|
-
<choiceInteraction maxChoices="1" responseIdentifier="RESPONSE" shuffle="false">
|
26
|
-
|
27
|
-
|
28
|
-
<simpleChoice identifier="A">
|
29
|
-
<object data="1c7db4f7-e933-4296-8979-963480422832_choice_A.html" type="text/html"/>
|
30
|
-
<feedbackInline identifier="A" outcomeIdentifier="FEEDBACK" showHide="show">incorrect: The reading focuses on cell phone usage not social media in emergency situations</feedbackInline>
|
31
|
-
</simpleChoice>
|
32
|
-
<simpleChoice identifier="B">
|
33
|
-
<object data="1c7db4f7-e933-4296-8979-963480422832_choice_B.html" type="text/html"/>
|
34
|
-
<feedbackInline identifier="B" outcomeIdentifier="FEEDBACK" showHide="show">incorrect: The reading does not state that students should leave cell phones at how but that they should not be allowed to use them in certain situations</feedbackInline>
|
35
|
-
</simpleChoice>
|
36
|
-
<simpleChoice identifier="C">
|
37
|
-
<object data="1c7db4f7-e933-4296-8979-963480422832_choice_C.html" type="text/html"/>
|
38
|
-
<feedbackInline identifier="C" outcomeIdentifier="FEEDBACK" showHide="show">Correct Answer: The reading emphasizes that cell phones are a hinderance in emergency situations</feedbackInline>
|
39
|
-
</simpleChoice>
|
40
|
-
<simpleChoice identifier="D">
|
41
|
-
<object data="1c7db4f7-e933-4296-8979-963480422832_choice_D.html" type="text/html"/>
|
42
|
-
<feedbackInline identifier="D" outcomeIdentifier="FEEDBACK" showHide="show">incorrect: In the reading, cell phones are viewed as a negative not a positive</feedbackInline>
|
43
|
-
</simpleChoice>
|
44
|
-
</choiceInteraction>
|
45
|
-
|
46
|
-
<rubricBlock view="scorer">
|
47
|
-
<div/>
|
48
|
-
</rubricBlock>
|
49
|
-
</itemBody>
|
50
|
-
|
51
|
-
<responseProcessing template="http://www.imsglobal.org/question/qti_v2p1/rptemplates/match_correct"/>
|
52
|
-
</assessmentItem>
|
@@ -1 +0,0 @@
|
|
1
|
-
<p>How Students Utilize Social Media in Adverse Situations</p>
|
@@ -1 +0,0 @@
|
|
1
|
-
<p>Why Students Should Be Required to Leave Cell Phones at Home</p>
|
@@ -1 +0,0 @@
|
|
1
|
-
<p>How Cell Phones Can Hinder Safety Officials in Emergency Situations</p>
|
@@ -1 +0,0 @@
|
|
1
|
-
<p>Cell Phones: A Necessity to Promote School Safety When Facing Tragedy</p>
|
@@ -1,31 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<assessmentItem adaptive="false" identifier="choice" timeDependent="false" title="02-1303010-00046" 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.imsglobal.org/xsd/qti/qtiv2p1/imsqti_v2p1.xsd">
|
3
|
-
<responseDeclaration baseType="identifier" cardinality="single" identifier="RESPONSE">
|
4
|
-
<correctResponse>
|
5
|
-
<value>A</value>
|
6
|
-
</correctResponse>
|
7
|
-
</responseDeclaration>
|
8
|
-
<outcomeDeclaration baseType="identifier" cardinality="single" identifier="FEEDBACK" normalMaximum="1">
|
9
|
-
<defaultValue>
|
10
|
-
<value>1</value>
|
11
|
-
</defaultValue>
|
12
|
-
</outcomeDeclaration>
|
13
|
-
<itemBody>
|
14
|
-
<div>
|
15
|
-
<object data="59ee7c9d-e6cc-4d0c-b545-258e20b1a244.html" type="text/html"/>
|
16
|
-
</div>
|
17
|
-
<choiceInteraction maxChoices="1" responseIdentifier="RESPONSE" shuffle="false">
|
18
|
-
<simpleChoice identifier="A">
|
19
|
-
<object data="59ee7c9d-e6cc-4d0c-b545-258e20b1a244_choice_A.html" type="text/html"/>
|
20
|
-
<feedbackInline identifier="A" outcomeIdentifier="FEEDBACK" showHide="show">Key - This is the correct answer because the pitches in this answer are exactly what was played on the stem audio.</feedbackInline>
|
21
|
-
</simpleChoice>
|
22
|
-
<simpleChoice identifier="B">
|
23
|
-
<object data="some_image.jpg" type="image/jpeg"></object>
|
24
|
-
</simpleChoice>
|
25
|
-
</choiceInteraction>
|
26
|
-
<rubricBlock view="scorer">
|
27
|
-
<div/>
|
28
|
-
</rubricBlock>
|
29
|
-
</itemBody>
|
30
|
-
<responseProcessing template="http://www.imsglobal.org/question/qti_v2p1/rptemplates/match_correct"/>
|
31
|
-
</assessmentItem>
|