AppHarbor.Tests.AliasMatcherTest.ShouldMatchTypeDecoratedWithAlias C# (CSharp) Method

ShouldMatchTypeDecoratedWithAlias() private method

private ShouldMatchTypeDecoratedWithAlias ( string command ) : void
command string
return void
        public void ShouldMatchTypeDecoratedWithAlias(string command)
        {
            var aliasMatcher = new AliasMatcher(new List<Type> { typeof(Foo) });
            Assert.Equal(typeof(Foo), aliasMatcher.GetMatchedType(command));
        }