mu/051scenario_test.mu

71 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-04-13 05:42:48 +00:00
# tests for 'scenario' in previous layer
2015-04-17 18:22:59 +00:00
2015-04-13 05:42:48 +00:00
scenario first_scenario_in_mu [
run [
2016-09-17 17:28:25 +00:00
10:num <- add 2, 2
2015-04-13 05:42:48 +00:00
]
memory-should-contain [
10 <- 4
]
]
scenario scenario_with_comment_in_mu [
run [
# comment
2016-09-17 17:28:25 +00:00
10:num <- add 2, 2
]
memory-should-contain [
10 <- 4
]
]
scenario scenario_with_multiple_comments_in_mu [
run [
# comment1
# comment2
2016-09-17 17:28:25 +00:00
10:num <- add 2, 2
]
memory-should-contain [
10 <- 4
2015-04-13 05:42:48 +00:00
]
]
2015-04-21 05:20:39 +00:00
scenario check_text_in_memory [
2015-04-21 05:20:39 +00:00
run [
2016-09-17 17:28:25 +00:00
10:num <- copy 3
11:char <- copy 97 # 'a'
12:char <- copy 98 # 'b'
13:char <- copy 99 # 'c'
2015-04-21 05:20:39 +00:00
]
memory-should-contain [
10:array:character <- [abc]
2015-04-21 05:20:39 +00:00
]
]
scenario check_trace [
run [
2016-09-17 17:28:25 +00:00
10:num <- add 2, 2
]
trace-should-contain [
mem: storing 4 in location 10
]
]
scenario check_trace_negative [
run [
2016-09-17 17:28:25 +00:00
10:num <- add 2, 2
]
trace-should-not-contain [
mem: storing 3 in location 10
]
]
scenario check_trace_instruction [
run [
trace 1, [foo], [aaa]
]
trace-should-contain [
foo: aaa
]
]