Create a test case for interactive testing.
Verify that the actual cell array is a subset of the expected
set.
Interactive verification passed.
Interactive verification failed.
---------------------
Framework Diagnostic:
---------------------
IsSubsetOf failed.
--> The actual value contains 1 element(s) not found in the expected superset:
--> Element at index 2 not found in the expected superset:
'd'
Actual Value (cell):
'a'
'd'
Expected Superset (cell):
'a' 'b' 'c'
Assert that a set of doubles is a subset of the expected
set.
Interactive assertion passed.
Interactive assertion failed.
---------------------
Framework Diagnostic:
---------------------
IsSubsetOf failed.
--> The actual value contains 5 element(s) not found in the expected superset:
--> Element at index 1 not found in the expected superset:
25
--> Element at index 2 not found in the expected superset:
26
--> Element at index 3 not found in the expected superset:
27
--> Element at index 4 not found in the expected superset:
28
--> Element at index 5 not found in the expected superset:
29
Actual Value (double):
25 26 27 28 29 30 31 32 33
Expected Superset (double):
30 31 32 33 34 35 36 37 38 39 40
Assertion failed.
Verify that the rows of a table are a subset of the expected
table.
Interactive verification passed.
Test that if the actual and expected sets have different
types, the IsSubsetOf
constraint is not satisfied.
Interactive assumption failed.
---------------------
Framework Diagnostic:
---------------------
IsSubsetOf failed.
--> Classes do not match.
Actual Class:
single
Expected Class:
double
Actual Value (single):
1 2 3
Expected Superset (double):
0 1 2 3 4 5
Assumption failed.