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

ShouldReturnScopedCommand() private method

private ShouldReturnScopedCommand ( string scope ) : void
scope string
return void
        public void ShouldReturnScopedCommand(string scope)
        {
            var matcher = new TypeNameMatcher<IFoo>(new Type[] { FooCommandType, FooBarCommandType });
            matcher.GetMatchedType(string.Concat("foo", scope));
        }