System.Tests.StringTests.Ctor_Char_Int C# (CSharp) 메소드

Ctor_Char_Int() 개인적인 메소드

private Ctor_Char_Int ( char c, int count, string expected ) : void
c char
count int
expected string
리턴 void
        public static void Ctor_Char_Int(char c, int count, string expected)
        {
            Assert.Equal(expected, new string(c, count));
        }
StringTests