ConnectToOnlineServerTests LoginWithoutApiKeyShouldFail Method Delta Engine Documentation

Namespace: DeltaEngine.Networking.Tests.Tcp
Assembly: DeltaEngine.Networking.Tests (in DeltaEngine.Networking.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void LoginWithoutApiKeyShouldFail()
Examples

[Test]
public void LoginWithoutApiKeyShouldFail()
{
    SendMessageAndWaitForServerResponse(new LoginRequest("", ""));
    Assert.IsInstanceOf<ServerError>(serverResponse);
}
See Also