Skip to content

Commit

Permalink
Rework custom RequiredPredicate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer198 committed Jan 14, 2024
1 parent 2e97837 commit 9f6b1c9
Show file tree
Hide file tree
Showing 13 changed files with 1,583 additions and 1,316 deletions.
213 changes: 0 additions & 213 deletions CryptoAnalysis/src/main/resources/CostumClasses/Requires.crysl

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
SPEC main.prefined.A
SPEC tests.customrules.customclass.A

OBJECTS
byte[] attr1;
byte[] attr2;
byte[] attr3;
main.prefined.B b;
main.prefined.C c;
tests.customrules.customclass.B b;
tests.customrules.customclass.C c;

EVENTS
cons : A();
Expand All @@ -15,8 +15,8 @@ EVENTS
ens2 : b = ensurePred2OnReturnB();
ens3 : c = ensurePred1OnReturnC();
ens4 : c = ensurePred2OnReturnC();
ens5 : ensurePred1OnThis();
ens6 : ensurePred2OnThis();
ens5 : ensurePred1onThis();
ens6 : ensurePred2onThis();
ens7 : ensurePred1OnAttr1();
ens8 : ensurePred2OnAttr1();
ens9 : ensurePred1OnAttr2();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
SPEC main.prefined.B
SPEC tests.customrules.customclass.B

OBJECTS
byte[] attr1;
byte[] attr2;
byte[] attr3;
main.prefined.A a;
main.prefined.C c;
tests.customrules.customclass.A a;
tests.customrules.customclass.C c;

EVENTS
cons : B();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
SPEC main.prefined.A
SPEC tests.customrules.customclass.C

OBJECTS
byte[] attr1;
byte[] attr2;
byte[] attr3;
main.prefined.B b;
main.prefined.A a;
tests.customrules.customclass.B b;
tests.customrules.customclass.A a;

EVENTS
cons : C();
Expand Down
Loading

0 comments on commit 9f6b1c9

Please sign in to comment.