JazSharp icon indicating copy to clipboard operation
JazSharp copied to clipboard

Jasmine inspired mocking and unit testing framework for C#.

Results 4 JazSharp issues
Sort by recently updated
recently updated
newest added

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...

bug
help wanted

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...

bug

The message here does not indicate the correct reason the test failed: ![image](https://user-images.githubusercontent.com/2824165/65991053-a2397000-e484-11e9-9d14-52f9106d1c83.png) Perhaps a message such as the following would be more appropriate? ``` Expected (int) to be equal...

enhancement

```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);...

bug