public void TestIdentifyConstructor() { Identify ident = new Identify(new string[] { "id1", "id2" }); Assert.AreEqual("id1", ident.FirstId, "Identify constructor should add idents"); Assert.AreEqual(2, ident.Count(), "Should have 2 ids inserted"); }
public void TestCount() { Identify ident = new Identify(new string[] { "id1", "id2" }); Assert.AreEqual(2, ident.Count(), "Should have 2 ids inserted"); }