X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Ftest%2Fsimpletests.lisp;h=78293e0f3a2a0cc8231d764b0a84e8af17e68b19;hb=3ae0c35;hp=d85675db12428ec64b7a8d8c0ad0d20604f4b9a7;hpb=7a82368afef8428c46d83d7afce51532cb7eb855;p=clnl diff --git a/src/test/simpletests.lisp b/src/test/simpletests.lisp index d85675d..78293e0 100644 --- a/src/test/simpletests.lisp +++ b/src/test/simpletests.lisp @@ -99,6 +99,12 @@ (defsimplereportertest "<= 3" "random-float 4 <= random-float 7" "false" "811837B74F63D10ABBC01DD59C1E7556706D9F7A") +(defsimplereportertest "precedence 1" "5 + 3 * 2 - 1 * count patches + 8" "10" + "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B") + +(defsimplereportertest "precedence 2" "(5 + 3) * 2 - 1 * count patches + 8" "15" + "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B") + (defsimplereportertest "any? 1" "any? turtles" "false" "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B") @@ -108,6 +114,9 @@ (defsimplecommandtest "die 1" "crt 10 ask turtles [ die ]" "A665C1BF95E1F9CAAE9B9F8B2FBE3DAA45453136") +(defsimplecommandtest "die 2" "crt 10 ask turtles [ hatch 1 die hatch 1 ]" + "DFB46C61ACB9A24004FF26B04DCB0AC32E90AA36") + (defreportertestwithsetup "any? 3" "crt 10 ask turtles [ die ]" "any? turtles" "false" "A665C1BF95E1F9CAAE9B9F8B2FBE3DAA45453136") @@ -150,14 +159,14 @@ (defsimplecommandtest "let 1" "let a 5 crt a" "9FE588C2749CD9CE66CB0EA451EFB80476E881FB") -(defsimplecommandtest "let 2" "let a 5 let b 6 crt (a + b)" +(defsimplecommandtest "let 2" "let a 5 let b 6 crt a + b" "4ABB6822402929878AB9E5A1084B9E4AE1F01D5B") (defsimplecommandtest "ticks 1" "reset-ticks tick" - "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B") + "22A78AC53B666DE94611D566D814AD3EA7CC26AB") (defreportertestwithsetup "ticks 2" "reset-ticks tick tick" "ticks" "2" - "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B") + "296AE6F478D03264745B0331EC5CEF578C37CAB9") (defreportertestwithsetup "of / who 1" "crt 10" "[ who ] of turtles" "[5 9 4 3 7 0 1 2 6 8]" "3F39BD2D8D5A1B2333E6C0DB665DBE3DCD5A75CE") @@ -253,3 +262,13 @@ (defsimplecommandtest "clear-all 1" "crt 10 ask patches [ set pcolor random 100 ] clear-all" "7B5DF28923D7FD72158018A876DE8ED02CFB0882") + +(defsimplecommandtest "stop 1" "crt 10 stop crt 10" + "A925E39EC022967568D238D31F70F0A375024A89") + +(defsimplecommandtest "stop 2" "crt 10 ask turtles [ fd 1 stop fd 1 ]" + "A6C980CC9843CDD211ABD9C13899010D555F3DC5") + +(defsimplecommandtest "turtles-here 1" + "crt 1000 ask turtles [ fd random-float 10 ] ask turtles [ set label [ who ] of one-of turtles-here ]" + "F34192513765D221A15D939A2BC8FFE18B6ADF4C")