Skip to content

Commit

Permalink
fix checker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brice-morin committed May 24, 2017
1 parent 9b644c6 commit 85d3482
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -12,7 +12,7 @@ thing fragment Foo
}

thing TestCheckAbstractFunction includes Test, Foo
@test "x # "
@test "x # x"
{
//Should fail because function foo is not implemented

Expand Down
Expand Up @@ -10,7 +10,7 @@ thing fragment Foo
}

thing TestCheckAbstractFunction1 includes Test, Foo
@test "x # "
@test "x # x"
{
//Should fail because function foo cannot be implemented twice
function foo() do
Expand Down
@@ -1,7 +1,7 @@
import "../thingml.thingml"

thing TestCheckFunctionCalls includes Test
@test "x # "
@test "x # x"
{
function foo(a : Integer) do
//...
Expand Down
@@ -1,7 +1,7 @@
import "../thingml.thingml"

thing TestCheckFunctionCalls2 includes Test
@test "x # "
@test "x # x"
{
function foo(a : Integer) do
//...
Expand Down
Expand Up @@ -10,7 +10,7 @@ thing fragment Foo
}

thing TestCheckStateMachine includes Test, Foo
@test "x # "
@test "x # x"
{
//Should fail because it should not be allowed to have two statechart in the composed thing

Expand Down

0 comments on commit 85d3482

Please sign in to comment.