public void TestNewInstanceWithName() { HFCAClient memberServices = HFCAClient.Create("name", "http://localhost:99", null); Assert.IsNotNull(memberServices); Assert.AreSame(typeof(HFCAClient), memberServices.GetType()); }
public void TestNewInstanceWithNameAndProperties() { Properties testProps = new Properties(); HFCAClient memberServices = HFCAClient.Create("name", "http://localhost:99", testProps); Assert.IsNotNull(memberServices); Assert.AreSame(typeof(HFCAClient), memberServices.GetType()); }