Skip to content

Commit

Permalink
deleting another old test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed May 30, 2024
1 parent f959350 commit 2c74962
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/JasperFx.Core.Tests/CacheTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,6 @@ public void get_enumerator()
cache.ShouldContain(42);
}

[Fact]
public void set_OnAddition()
{
ICallback callback = Substitute.For<ICallback>();
cache["firstKey"] = 0;
callback.DidNotReceive().OnAdditionCallback(42);
//callback.AssertWasNotCalled(c => c.OnAdditionCallback(42));
cache.OnAddition = callback.OnAdditionCallback;
cache[Key] = 42;
callback.Received().OnAdditionCallback(42);
//callback.AssertWasCalled(c=>c.OnAdditionCallback(42));
}

[Fact]
public void can_remove()
{
Expand Down

0 comments on commit 2c74962

Please sign in to comment.