Appccelerate.Bootstrapper.Syntax.Executables.ExecutableTest.ShouldReturnTypeName C# (CSharp) Method

ShouldReturnTypeName() private method

private ShouldReturnTypeName ( IExecutable testee ) : void
testee IExecutable
return void
        public void ShouldReturnTypeName(IExecutable<ICustomExtension> testee)
        {
            string expectedName = testee.GetType().FullNameToString();

            testee.Name.Should().Be(expectedName);
        }