about summary refs log blame commit diff stats
path: root/html/051scenario_test.mu.html
blob: f7807a4d6bdc1638caf82dce81d72a16fa790d60 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                                                                          
                                       






                                                                                         

                                                                                                 
                        
                            
                            
                               












                                                                     
                               
       
                                                        

                         
                                          

   
 
                                      
       
                                          
                                                        

                         
                                          

   
 
                                                
       

                                           
                                                        

                         
                                          

   
 
                                 
       



                                                                                                                              

                         
                                                     

   
 
                      
       
                                                        

                        
                                                                

   
 
                               
       
                                                        

                            
                                                                

   
 
                                  
       
                         

                        
            

   



                                     
<!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>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: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1.05em; }
.Comment { color: #9090ff; }
.Special { color: #ff6060; }
.Identifier { color: #804000; }
-->
</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"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </span>4
  ]
]

scenario scenario_with_comment_in_mu [
  run [
    <span class="Comment"># comment</span>
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </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"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </span>4
  ]
]

scenario check_string_in_memory [
  run [
    1:number<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 3
    2:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 97  <span class="Comment"># 'a'</span>
    3:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 98  <span class="Comment"># 'b'</span>
    4:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 99  <span class="Comment"># 'c'</span>
  ]
  memory-should-contain [
    1:string<span class="Special"> &lt;- </span>[abc]
  ]
]

scenario check_trace [
  run [
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  trace-should-contain [
    mem: storing 4 <span class="Identifier">in</span> location 1
  ]
]

scenario check_trace_negative [
  run [
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  trace-should-not-contain [
    mem: storing 5 <span class="Identifier">in</span> location 1
  ]
]

scenario check_trace_instruction [
  run [
    trace 1, [foo], [aaa]
  ]
  trace-should-contain [
    foo: aaa
  ]
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->