Esempio n. 1
0
        public ITestFormatter AddTestMethod(string methodName, string testBody)
        {
            TestMethods.Add(string.Format(@"
        @Test
        public void Check_{0}(){{
            {1}
        }}", methodName, testBody));

            return(this);
        }