Exemplo n.º 1
0
        public void should_pass_foo_bar_test()
        {
            Foo foo = new Foo();

            Assert.IsTrue(foo.Bar(true), "Should be true");
        }
Exemplo n.º 2
0
        public void should_fail_foo_bar_test()
        {
            Foo foo = new Foo();

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