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

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