public void GetNetworkNameReturnsNetworkName() { TestableConnection connection = new TestableConnection("Test", 1); Assert.AreEqual("Test", connection.ConnectionTypeName); Assert.AreEqual(1, connection.Price); }
public void TestDisposeOnNicConnection() { TestableConnection connection = new TestableConnection("Test", 100); connection.Dispose(); }