예제 #1
0
파일: ExtraTests.cs 프로젝트: hakakou/i4o
        public void TestNonComparableIndex()
        {
            object o1 = "test";
            object o2 = 10;

            var iComp = new IndexSet<TestClassB>(
                new TestClassB[] {
                    new TestClassB() { NonComparable = o1 },
                    new TestClassB() { NonComparable = o2 }
                },
                new IndexSpecification<TestClassB>().Add(q => q.NonComparable));

            Assert.AreEqual(1, iComp.WhereIndexed(q => q.NonComparable == o1).Count());
            Assert.AreEqual(1, iComp.WhereIndexed(q => q.NonComparable == o2).Count());
        }
예제 #2
0
파일: ExtraTests.cs 프로젝트: hakakou/i4o
        public void TestElementClass()
        {
            var iComp = new IndexSet<TestClassB>(
                new TestClassB[] {
                    new TestClassB() { T = 10 },
                    new TestClassB() { T = 20 },
                    new TestClassB() { T = 30 },
                    new TestClassB() { T = 40 }
                },
                new IndexSpecification<TestClassB>().Add(q => q.T)); ;

            Assert.AreEqual(4, iComp.Where(c => c.T2 == 0).Count());

            bool failed = false;
            try
            {
                iComp.WhereIndexed(c => c.T2 == 0).Count();
            }
            catch
            {
                failed = true;
            }

            Assert.IsTrue(failed);
        }
예제 #3
0
파일: ExtraTests.cs 프로젝트: hakakou/i4o
        public void TestComparableIndex()
        {
            var iComp = new IndexSet<TestClassB>(
                new TestClassB[] {
                    new TestClassB() { T = 10 },
                    new TestClassB() { T = 20 },
                    new TestClassB() { T = 30 },
                    new TestClassB() { T = 40 }
                },
                new IndexSpecification<TestClassB>().Add(q => q.T));

            Assert.AreEqual(1, iComp.WhereIndexed(q => q.T == 20).Count());
            Assert.AreEqual(3, iComp.WhereIndexed(q => q.T >= 20).Count());
            Assert.AreEqual(2, iComp.WhereIndexed(q => q.T > 20).Count());
            Assert.AreEqual(2, iComp.WhereIndexed(q => q.T <= 20).Count());
            Assert.AreEqual(1, iComp.WhereIndexed(q => q.T < 20).Count());
        }