diff --git a/test/scripting_api/interaction_input_test.dart b/test/scripting_api/interaction_input_test.dart index 34598df1..0aefa0ab 100644 --- a/test/scripting_api/interaction_input_test.dart +++ b/test/scripting_api/interaction_input_test.dart @@ -38,6 +38,8 @@ void main() { interactionInput.dataSchemaValue, DataSchemaValue.fromString(testValue), ); + + expect(interactionInput, testValue.asInteractionInput()); }); test('Integer', () { @@ -55,6 +57,8 @@ void main() { interactionInput.dataSchemaValue, DataSchemaValue.fromInteger(testValue), ); + + expect(interactionInput, testValue.asInteractionInput()); }); test('Number', () { @@ -72,6 +76,8 @@ void main() { interactionInput.dataSchemaValue, DataSchemaValue.fromNumber(testValue), ); + + expect(interactionInput, testValue.asInteractionInput()); }); test('boolean', () { @@ -89,6 +95,8 @@ void main() { interactionInput.dataSchemaValue, DataSchemaValue.fromBoolean(testValue), ); + + expect(interactionInput, testValue.asInteractionInput()); }); test('an array', () { @@ -111,6 +119,8 @@ void main() { interactionInput.dataSchemaValue.hashCode, DataSchemaValue.fromArray(testValue).hashCode, ); + + expect(interactionInput, testValue.asInteractionInput()); }); test('an object', () { @@ -143,6 +153,8 @@ void main() { interactionInput.dataSchemaValue.hashCode, DataSchemaValue.fromObject(testValue).hashCode, ); + + expect(interactionInput, testValue.asInteractionInput()); }); }); });