Example #1
0
        public static bool PlugTestTest3()
        {
            PlugTestCase test = new PlugTestCase();

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