Esempio n. 1
0
        public static bool PlugTestTest3()
        {
            PlugTestCase test = new PlugTestCase();

            return(test.AddZ2Z(11) == 22);
        }
Esempio n. 2
0
 public static bool PlugTestTest2()
 {
     return(PlugTestCase.Double(10) == 20);
 }
Esempio n. 3
0
 public static bool PlugTestTest1()
 {
     return(PlugTestCase.AddOne(10) == 11);
 }
Esempio n. 4
0
 public static int AddZ2Z(ref PlugTestCase plugTestCase, int z)
 {
     return(z + z);
 }
Esempio n. 5
0
		public static bool PlugTestTest3()
		{
			PlugTestCase test = new PlugTestCase();
			return test.AddZ2Z(11) == 22;
		}
Esempio n. 6
0
		public static int AddZ2Z(ref PlugTestCase plugTestCase, int z)
		{
			return z + z;
		}