Simplify Example

This commit is contained in:
Sven van Heugten 2026-05-12 16:34:08 +02:00
parent 9ff53f1803
commit de5843a783
No known key found for this signature in database
GPG key ID: D612F88666F4F660
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
namespace Example namespace Example
module Calculator = module Calculator =
let addOne value = value - 1 let addOne value = value + 1

View file

@ -1,4 +1,4 @@
namespace Example.Tests namespace Example
open Example open Example
open Mutannot open Mutannot
@ -7,10 +7,10 @@ open Xunit
type CalculatorTests() = type CalculatorTests() =
[<Fact>] [<Fact>]
[<MutationCase(""" [<MutationCase("""
diff --git a/Example.Tests/Calculator.fs b/Example.Tests/Calculator.fs diff --git a/Example/Calculator.fs b/Example/Calculator.fs
index 6f0c515..030e391 100644 index 6f0c515..030e391 100644
--- a/Example.Tests/Calculator.fs --- a/Example/Calculator.fs
+++ b/Example.Tests/Calculator.fs +++ b/Example/Calculator.fs
@@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
namespace Example namespace Example