diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-23 23:59:59 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-24 20:59:00 -0700 |
commit | 576990113273caed9a045380f1457adc1df6a5ee (patch) | |
tree | 0add69eef41b3eca78191c59b7bfbfaaedd980d8 /cpp/017compare | |
parent | 7fb56277f54b9e2625357a433b18f60e4493f34a (diff) | |
download | mu-576990113273caed9a045380f1457adc1df6a5ee.tar.gz |
968
Diffstat (limited to 'cpp/017compare')
-rw-r--r-- | cpp/017compare | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cpp/017compare b/cpp/017compare index 57f70279..45deab06 100644 --- a/cpp/017compare +++ b/cpp/017compare @@ -30,7 +30,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 0 -+mem: storing in location 3 ++mem: storing 0 in location 3 :(scenario "equal2") recipe main [ @@ -44,7 +44,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 34 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(before "End Globals") const int GREATER_THAN = 14; @@ -79,7 +79,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "greater_than2") recipe main [ @@ -93,7 +93,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 34 +run: product 0 is 0 -+mem: storing in location 3 ++mem: storing 0 in location 3 :(before "End Globals") const int LESSER_THAN = 15; @@ -128,7 +128,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "lesser_than2") recipe main [ @@ -142,7 +142,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 0 -+mem: storing in location 3 ++mem: storing 0 in location 3 :(before "End Globals") const int GREATER_OR_EQUAL = 16; @@ -177,7 +177,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "greater_or_equal2") recipe main [ @@ -191,7 +191,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 34 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "greater_or_equal3") recipe main [ @@ -205,7 +205,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 35 +run: product 0 is 0 -+mem: storing in location 3 ++mem: storing 0 in location 3 :(before "End Globals") const int LESSER_OR_EQUAL = 17; @@ -240,7 +240,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "lesser_or_equal2") recipe main [ @@ -254,7 +254,7 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 1 -+mem: storing in location 3 ++mem: storing 1 in location 3 :(scenario "lesser_or_equal3") recipe main [ @@ -268,4 +268,4 @@ recipe main [ +run: ingredient 1 is 2 +mem: location 2 is 33 +run: product 0 is 0 -+mem: storing in location 3 ++mem: storing 0 in location 3 |