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

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