コード例 #1
0
        public void should_pass_foo_bar_test()
        {
            Foo foo = new Foo();

            Assert.IsTrue(foo.Bar(true), "Should be true");
        }
コード例 #2
0
        public void should_fail_foo_bar_test()
        {
            Foo foo = new Foo();

            Assert.IsFalse(foo.Bar(true), "Should be false");
        }