Skip to content
Snippets Groups Projects
Commit e45b760b authored by Jan Gruteser's avatar Jan Gruteser
Browse files

add ignored test for set product

parent ab0dd38b
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,19 @@ public class BBuiltInsTest { ...@@ -31,6 +31,19 @@ public class BBuiltInsTest {
compare(expected, module); compare(expected, module);
} }
@Ignore
@Test
public void testSetProduct() throws Exception {
final String module = "-------------- MODULE Testing ----------------\n"
+ "EXTENDS TLA2B\n"
+ "ASSUME SetProduct({1,2}) = 2\n"
+ "=================================";
final String expected = "MACHINE Testing\n"
+ "PROPERTIES PI(t_).(t_ : {1,2}|t_) = 2 \n" + "END";
compare(expected, module);
}
@Test @Test
public void testString() throws Exception { public void testString() throws Exception {
final String module = "-------------- MODULE Testing ----------------\n" final String module = "-------------- MODULE Testing ----------------\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment