Example #1
0
        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");
        }
Example #2
0
        public void TestCount()
        {
            Identify ident = new Identify(new string [] { "id1", "id2" });

            Assert.AreEqual(2, ident.Count(), "Should have 2 ids inserted");
        }