aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/csharp/special_variable_macros_runme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/csharp/special_variable_macros_runme.cs')
-rw-r--r--Examples/test-suite/csharp/special_variable_macros_runme.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Examples/test-suite/csharp/special_variable_macros_runme.cs b/Examples/test-suite/csharp/special_variable_macros_runme.cs
index 1845cd074..432b90f04 100644
--- a/Examples/test-suite/csharp/special_variable_macros_runme.cs
+++ b/Examples/test-suite/csharp/special_variable_macros_runme.cs
@@ -20,5 +20,9 @@ public class runme {
throw new Exception("test failed");
NewName newName = NewName.factory("factoryname");
name = newName.getStoredName();
+ if (special_variable_macros.makeStringInt("stringint", 999) != "stringint")
+ throw new Exception("test failed");
+ if (special_variable_macros.provideStringInt(999) != "1000")
+ throw new Exception("test failed");
}
}