7fbbfcbe00a2 — Michael Johnson 2 months ago
Add rudimentary Stryker configuration
3 files changed, 11 insertions(+), 0 deletions(-)

M .gitignore
M .hgignore
A => src/Tests/stryker-config.json
M .gitignore +1 -0
@@ 21,3 21,4 @@ config.wyam.*
 docs/output/**
 
 build-artifacts/**
+StrykerOutput/**

          
M .hgignore +1 -0
@@ 23,3 23,4 @@ config.wyam.*
 docs/output/**
 
 build-artifacts/**
+StrykerOutput/**
  No newline at end of file

          
A => src/Tests/stryker-config.json +9 -0
@@ 0,0 1,9 @@ 
+{
+  "stryker-config":
+  {
+    "solution": "../RandN.sln",
+    "ignore-methods": [
+      "Argument*Exception"
+    ]
+  }
+}