Exemple #1
0
        public void Test_CompareTo_AlphabeticalUrl_GreaterThan()
        {
            EntryElement e = new EntryElement("http://www.a.com", "A", CompareBy.AlphabetUrl);
            EntryElement f = new EntryElement("http://www.b.com", "B", CompareBy.AlphabetUrl);

            Assert.AreEqual(f.CompareTo(e) > 0, true, "f compared to e should be greater than 0");
        }
Exemple #2
0
        public void Test_CompareTo_AlphabeticalUrl_LessThan()
        {
            EntryElement e = new EntryElement("http://www.a.com", "A", CompareBy.AlphabetUrl);
            EntryElement f = new EntryElement("http://www.b.com", "B", CompareBy.AlphabetUrl);

            Assert.AreEqual(e.CompareTo(f) < 0, true, "e compared to f should be less than 0");
        }
Exemple #3
0
        public void Test_CompareTo_AlphabeticalUrl_Same()
        {
            EntryElement e = new EntryElement("http://www.duckduckgo.com", "A", CompareBy.AlphabetUrl);
            EntryElement f = new EntryElement("http://www.duckduckgo.com", "A", CompareBy.AlphabetUrl);

            Assert.AreEqual(e.CompareTo(f), 0, "e and f comparison should be 0");
        }
Exemple #4
0
        public void Test_CompareTo_Chronological_GreaterThan()
        {
            EntryElement e = new EntryElement("http://www.duckduckgo.com", "A", CompareBy.Chronological);
            EntryElement f = new EntryElement("http://www.duckduckgo.com", "B", CompareBy.Chronological);

            Assert.AreEqual(f.CompareTo(e) > 0, true, "f compared to e should be greater than 0");
        }
Exemple #5
0
        public void Test_CompareTo_Chronological_LessThan()
        {
            EntryElement e = new EntryElement("http://www.duckduckgo.com", "A", CompareBy.Chronological);
            EntryElement f = new EntryElement("http://www.duckduckgo.com", "B", CompareBy.Chronological);

            Assert.AreEqual(e.CompareTo(f) < 0, true, "e compared to f should be less than 0");
        }
Exemple #6
0
        public void Test_CompareTo_Chronological_Same()
        {
            EntryElement e = new EntryElement("http://www.duckduckgo.com", "A", CompareBy.Chronological);
            EntryElement f = new EntryElement("http://www.duckduckgo.com", "A", e.AccessTime, CompareBy.Chronological);

            Assert.AreEqual(e.CompareTo(f), 0, "e and f comparison should be 0");
        }