def test_load_raw_state(self):
        # GIVEN
        raw_state = {
            "commonComponentState": {
                "4cb5f12f9e164c6c545a55202bc818f2": {"answer": [1, 2, 0, 3]}
            },
        }

        # WHEN
        result = CourseWareB.load_raw_state(json.dumps(raw_state))

        # THEN
        target_state = (1, 2, 0, 3)
        self.assertEqual(target_state, result)
 def test_load_state(self):
     CourseWareB.load_raw_state("")