about summary refs log tree commit diff stats
path: root/000organization.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-05 09:30:56 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-05 09:30:56 -0700
commit4ea9905f00b473ea58a8acd7b4240ea35cd5f330 (patch)
tree05a43a630da8acc0f839723865aa8e2ab4ef257c /000organization.cc
parentdb7d6e063a4729ce06269013f839892d7169e396 (diff)
downloadmu-4ea9905f00b473ea58a8acd7b4240ea35cd5f330.tar.gz
3297 - run unit tests before scenarios
I've been putting up for some time with the tension between wanting to
show scenarios at the top of the layer even if I want to *run* any unit
tests of sub-components introduced within the layer before them. Turned
out to be an easy fix.

We don't have very many of these, and the unit tests in the early layers
don't compete with any scenarios, so I don't need to mess with them. But
this is a key tool in my toolkit, to be able to decouple presentation
order from run order for tests.

Though now the separate compilation units are again unbalanced; sigh.
Diffstat (limited to '000organization.cc')
-rw-r--r--000organization.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/000organization.cc b/000organization.cc
index 3dd3974a..cbd2ede7 100644
--- a/000organization.cc
+++ b/000organization.cc
@@ -121,6 +121,9 @@ int main(int argc, char* argv[]) {
   return 0;  // End Main
 }
 
+// Unit Tests
+// End Unit Tests
+
 //: our first directive; will move the include above the program
 :(before "End Includes")
 #include <stdlib.h>