csharp test-suite infrastructure
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4434 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
719959886d
commit
c146f71da1
4 changed files with 333 additions and 0 deletions
19
Examples/test-suite/csharp/sneaky1_runme.cs
Normal file
19
Examples/test-suite/csharp/sneaky1_runme.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
|
||||
public class runme
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
if (sneaky1.add(30, 2) != 32)
|
||||
throw new Exception("add test failed");
|
||||
|
||||
if (sneaky1.sub(20, 2) != 18)
|
||||
throw new Exception("sub test failed");
|
||||
|
||||
if (sneaky1.mul(20, 2) != 40)
|
||||
throw new Exception("mul test failed");
|
||||
|
||||
if (sneaky1.divide(20, 2) != 10)
|
||||
throw new Exception("div test failed");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue