blob: c71f8c81b2ce8b18e1d5a149d2a2e1801559df4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>~/Desktop/s/mu/051scenario_test.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v1">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #000000; }
body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
* { font-size: 1em; }
.Comment { color: #8080ff; }
.Constant { color: #008080; }
.Special { color: #ff6060; }
-->
</style>
<script type='text/javascript'>
<!--
-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># tests for 'scenario' in previous layer</span>
scenario first_scenario_in_mu [
run [
1:number<span class="Special"> <- </span>add <span class="Constant">2:literal</span>, <span class="Constant">2:literal</span>
]
memory-should-contain [
1<span class="Special"> <- </span>4
]
]
scenario scenario_with_comment_in_mu [
run [
<span class="Comment"># comment</span>
1:number<span class="Special"> <- </span>add <span class="Constant">2:literal</span>, <span class="Constant">2:literal</span>
]
memory-should-contain [
1<span class="Special"> <- </span>4
]
]
scenario scenario_with_multiple_comments_in_mu [
run [
<span class="Comment"># comment1</span>
<span class="Comment"># comment2</span>
1:number<span class="Special"> <- </span>add <span class="Constant">2:literal</span>, <span class="Constant">2:literal</span>
]
memory-should-contain [
1<span class="Special"> <- </span>4
]
]
scenario check_string_in_memory [
run [
1:number<span class="Special"> <- </span>copy <span class="Constant">3:literal</span>
2:character<span class="Special"> <- </span>copy <span class="Constant">97:literal</span> <span class="Comment"># 'a'</span>
3:character<span class="Special"> <- </span>copy <span class="Constant">98:literal</span> <span class="Comment"># 'b'</span>
4:character<span class="Special"> <- </span>copy <span class="Constant">99:literal</span> <span class="Comment"># 'c'</span>
]
memory-should-contain [
1:string<span class="Special"> <- </span><span class="Constant">[abc]</span>
]
]
scenario check_trace [
run [
1:number<span class="Special"> <- </span>add <span class="Constant">2:literal</span>, <span class="Constant">2:literal</span>
]
trace-should-contain [
mem: storing 4 in location 1
]
]
scenario check_trace_negative [
run [
1:number<span class="Special"> <- </span>add <span class="Constant">2:literal</span>, <span class="Constant">2:literal</span>
]
trace-should-not-contain [
mem: storing 5 in location 1
]
]
scenario check_trace_instruction [
run [
trace <span class="Constant">[foo]</span>, <span class="Constant">[aaa]</span>
]
trace-should-contain [
foo: aaa
]
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->
|