コード例 #1
0
        public void test_information_with_null_name_to_remove_does_not_fail()
        {
            var counts = new CouplingCountAndNameProjection();

            Assert.DoesNotThrow(() => counts.Remove(new TestRunInformation()
            {
                Name = null
            }));
        }
 public void Setup()
 {
     var info = new TestRunInformation
                    {
                        Name = "TESTNAME",
                        TestChain = TestData.BuildChainWithPrefix("Test")
                    };
     projection = new CouplingCountAndNameProjection();
     projection.Index(info);
     projection.Remove(info);
 }
コード例 #3
0
        public void Setup()
        {
            var info = new TestRunInformation
            {
                Name      = "TESTNAME",
                TestChain = TestData.BuildChainWithPrefix("Test")
            };

            projection = new CouplingCountAndNameProjection();
            projection.Index(info);
            projection.Remove(info);
        }
コード例 #4
0
        public void null_test_information_to_remove_does_not_fail()
        {
            var counts = new CouplingCountAndNameProjection();

            Assert.DoesNotThrow(() => counts.Remove(null));
        }