Created
November 5, 2014 13:27
-
-
Save rofr/cd8534c35f921f840f5d to your computer and use it in GitHub Desktop.
Why does this test fail?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
public void ESConnectTest() | |
{ | |
var endPoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 1113); | |
var connection = EventStoreConnection.Create(endPoint); | |
bool connected = false; | |
connection.Connected += (sender, args) => connected = true; | |
connection.ConnectAsync().Wait(); | |
Assert.IsTrue(connected); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Test fails without any ES3 console output