Esempio n. 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     TestGit.Math math = new TestGit.Math();
     Label1.Text = math.add(2, 6).ToString();
 }
Esempio n. 2
0
        public void TestMethod2(int a, int b)
        {
            TestGit.Math _m = new TestGit.Math();

            NUnit.Framework.Assert.AreNotEqual(_m.add(a, b), 7);
        }
Esempio n. 3
0
        public void TestMethod2(int a, int b)
        {
            TestGit.Math _m = new TestGit.Math();

            NUnit.Framework.Assert.AreNotEqual(_m.add(a, b), 7);
        }
Esempio n. 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     TestGit.Math math=new TestGit.Math();
     Label1.Text = math.add(2,6).ToString();
 }