ArgsTests.UsageTests.TestUsageWithNoTypeAndWithPosition C# (CSharp) 메소드

TestUsageWithNoTypeAndWithPosition() 개인적인 메소드

private TestUsageWithNoTypeAndWithPosition ( ) : void
리턴 void
        public void TestUsageWithNoTypeAndWithPosition()
        {
            var usage = ArgUsage.GetUsage<BasicUsageArgs>("test", new ArgUsageOptions()
            {
                ShowType = false,
                ShowPosition = true,
            });

            Assert.IsFalse(usage.Contains("TYPE"));
            Assert.IsTrue(usage.Contains("POSITION"));
        }