public void Test_Partial_Template()
        {
            var misc   = new MiscAccessor();
            var result = misc.PartialedQuery();

            result.ShouldBe(new[] { 1, 2, 3 });
        }
Exemple #2
0
        public void Proc_UsesPartialsCorrectly()
        {
            MiscAccessor misc = new MiscAccessor();

            IList <int> result = misc.PartialedQuery();

            result.ShouldBe(new[] { 1, 2, 3 });
        }