Exemplo n.º 1
0
        public void CannotMakeTestResultWhenTestCaseIsNotInCache()
        {
            var fakeResultNode = FakeTestData.GetResultNode();
            var testResult     = testConverter.ConvertTestResult(fakeResultNode);

            Assert.Null(testResult);
        }
Exemplo n.º 2
0
        public void CannotMakeTestResultWhenTestCaseIsNotInCache()
        {
            var nunitResult = new NUnitTestResult(fakeNUnitTest);
            var testResult  = testConverter.ConvertTestResult(nunitResult);

            Assert.Null(testResult);
        }