Appccelerate.Bootstrapper.Reporting.ExecutionContextTest.CreateExecutableContext_ShouldCreateExecutableContext C# (CSharp) Метод

CreateExecutableContext_ShouldCreateExecutableContext() приватный Метод

private CreateExecutableContext_ShouldCreateExecutableContext ( ) : void
Результат void
        public void CreateExecutableContext_ShouldCreateExecutableContext()
        {
            ExecutionContext testee = CreateTestee(Mock.Of<IDescribable>());

            var executableContext = testee.CreateExecutableContext(Mock.Of<IDescribable>());

            testee.Executables.Should().NotBeEmpty()
                .And.HaveCount(1)
                .And.Contain(executableContext);
        }