AppHarbor.Tests.AliasMatcherTest.ShouldMatchTypeDecoratedWithAlias C# (CSharp) Метод

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

private ShouldMatchTypeDecoratedWithAlias ( string command ) : void
command string
Результат void
        public void ShouldMatchTypeDecoratedWithAlias(string command)
        {
            var aliasMatcher = new AliasMatcher(new List<Type> { typeof(Foo) });
            Assert.Equal(typeof(Foo), aliasMatcher.GetMatchedType(command));
        }