Skip to content

Instantly share code, notes, and snippets.

@rofr
Created November 5, 2014 13:27
Show Gist options
  • Save rofr/cd8534c35f921f840f5d to your computer and use it in GitHub Desktop.
Save rofr/cd8534c35f921f840f5d to your computer and use it in GitHub Desktop.
Why does this test fail?
[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);
}
@rofr
Copy link
Author

rofr commented Nov 5, 2014

Test fails without any ES3 console output

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment