Add example project
This commit is contained in:
parent
eed9190ddb
commit
b05c2dc0a2
4 changed files with 66 additions and 0 deletions
13
example-tests/Example.Tests/MutationCaseAttribute.fs
Normal file
13
example-tests/Example.Tests/MutationCaseAttribute.fs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace Mutannot
|
||||
|
||||
open System
|
||||
|
||||
[<AttributeUsage(AttributeTargets.Method, AllowMultiple = true)>]
|
||||
type MutationCaseAttribute(id: string, file: string, line: int, find: string, replace: string) =
|
||||
inherit Attribute()
|
||||
|
||||
member _.Id = id
|
||||
member _.File = file
|
||||
member _.Line = line
|
||||
member _.Find = find
|
||||
member _.Replace = replace
|
||||
Loading…
Add table
Add a link
Reference in a new issue