about summary refs log tree commit diff stats
path: root/cpp/031scenario
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/031scenario')
-rw-r--r--cpp/031scenario3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/031scenario b/cpp/031scenario
index f3bd582c..c595ce82 100644
--- a/cpp/031scenario
+++ b/cpp/031scenario
@@ -1,8 +1,10 @@
+//: Allow tests to be written in mu files.
 :(before "End Types")
 struct scenario {
   string name;
   string to_run;
   map<int, int> memory_expectations;
+  // End scenario Fields
 };
 
 :(before "End Globals")
@@ -28,6 +30,7 @@ for (size_t i = 0; i < Scenarios.size(); ++i) {
       Passed = false;
     }
   }
+  // End Scenario Checks
   if (Passed) cerr << ".";
 }