/trunk/Examples/test-suite/csharp/sneaky1_runme.cs

# · C# · 20 lines · 16 code · 4 blank · 0 comment · 8 complexity · 40a9146588c98c7acfb26dfbdd8789ed MD5 · raw file

  1. using System;
  2. using sneaky1Namespace;
  3. public class runme
  4. {
  5. static void Main()
  6. {
  7. if (sneaky1.add(30, 2) != 32)
  8. throw new Exception("add test failed");
  9. if (sneaky1.subtract(20, 2) != 18)
  10. throw new Exception("subtract test failed");
  11. if (sneaky1.mul(20, 2) != 40)
  12. throw new Exception("mul test failed");
  13. if (sneaky1.divide(20, 2) != 10)
  14. throw new Exception("div test failed");
  15. }
  16. }