-
-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow tests to be compiled without examples (Closes #160)
- Loading branch information
Peter Spiess-Knafl
committed
Aug 10, 2016
1 parent
bff307c
commit 31b8a66
Showing
2 changed files
with
78 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
[ | ||
{ | ||
"name": "sayHello", | ||
"params": { | ||
"name": "Peter" | ||
}, | ||
"returns": "Hello Peter" | ||
}, | ||
{ | ||
"name": "notifyServer" | ||
}, | ||
{ | ||
"name": "addNumbers", | ||
"params": [ | ||
3, | ||
4 | ||
], | ||
"returns": 7 | ||
}, | ||
{ | ||
"name": "addNumbers2", | ||
"params": [ | ||
3.2, | ||
4.1 | ||
], | ||
"returns": 7.5 | ||
}, | ||
{ | ||
"name": "isEqual", | ||
"params": [ | ||
"string1", | ||
"string2" | ||
], | ||
"returns": false | ||
}, | ||
{ | ||
"name": "buildObject", | ||
"params": [ | ||
"peter", | ||
1990 | ||
], | ||
"returns": { | ||
"name": "peter", | ||
"year": 1990 | ||
} | ||
}, | ||
{ | ||
"name" : "methodWithoutParameters", | ||
"returns": "String" | ||
} | ||
] |