def test__check_consistency_positive(self): """Test case for _check_consistency method positive result.""" SpeechActContentConfig(arg1="arg1", arg2="arg2") with self.assertRaises(ProtocolSpecificationParseError): SpeechActContentConfig(arg1=None, arg2=1) with self.assertRaises(ProtocolSpecificationParseError): SpeechActContentConfig(arg1="", arg2="")
def test_from_json_positive(self): """Test case for from_json method positive result.""" SpeechActContentConfig.from_json({})
def test_json_positive(self): """Test case for json property positive result.""" config = SpeechActContentConfig() config.json
def test_speech_act_content_config_init_positive(self, arg): """Test case for __init__ method positive result.""" SpeechActContentConfig()