예제 #1
0
파일: Code.cs 프로젝트: fugaku/scriptsharp
        public void TestFormat() {
            Assert.ExpectAsserts(1);

            PublicClass testee = new PublicClass();
            string s = testee.Format(0);
            Assert.AreEqual(s, "0", "Expected '0' for result.");
        }
예제 #2
0
        public void TestFormat()
        {
            Assert.ExpectAsserts(1);

            PublicClass testee = new PublicClass();
            string      s      = testee.Format(0);

            Assert.AreEqual(s, "0", "Expected '0' for result.");
        }