summaryrefslogtreecommitdiff
path: root/src/test/WellSpecs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WellSpecs.cs')
-rw-r--r--src/test/WellSpecs.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/WellSpecs.cs b/src/test/WellSpecs.cs
new file mode 100644
index 0000000..3845c1c
--- /dev/null
+++ b/src/test/WellSpecs.cs
@@ -0,0 +1,16 @@
+namespace test
+{
+ using Machine.Specifications;
+ using domain;
+
+ public class WellSpecs
+ {
+ Establish context = ()=>
+ {
+ sut = new Well();
+ };
+
+ static readonly Well sut;
+ }
+ public class Well{}
+}