JazSharp
JazSharp copied to clipboard
Jasmine inspired mocking and unit testing framework for C#.
Not sure what the cause of this is. Debugging results in ExecutionEngineException. The cause may be a Where function call that takes in `KeyValuePair`. The exception appears to trigger when...
https://github.com/Sellorio/JazSharp/blob/d0f73504188894fae2341dac8e9d7b10109f350b/JazSharp.Tests/JazExpectationExceptionSpec.cs#L20 Test depends on the directory where the code was built. Edit: some other files that may be affected: ``` Find all "seamillo", Subfolders, Keep modified files open, Find Results...
The message here does not indicate the correct reason the test failed:  Perhaps a message such as the following would be more appropriate? ``` Expected (int) to be equal...
```csharp Describe(() => { // Expected behaviour It("appends to history", () => { OperationHistory history = new OperationHistory(); Spy historySpy = Jaz.SpyOn(history, nameof(history.Append)); var adder = new Adder(history); adder.Add(-1, 1);...