AppHarbor.Tests.TypeNameMatcherTest.ShouldGetTypeStartingWithCommandName C# (CSharp) Method

ShouldGetTypeStartingWithCommandName() private method

private ShouldGetTypeStartingWithCommandName ( string commandName ) : void
commandName string
return void
        public void ShouldGetTypeStartingWithCommandName(string commandName)
        {
            var matcher = new TypeNameMatcher<IFoo>(new Type[] { FooCommandType });
            Assert.Equal(FooCommandType, matcher.GetMatchedType(commandName));
        }