aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/constant_directive_runme.js
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/javascript/constant_directive_runme.js')
-rw-r--r--Examples/test-suite/javascript/constant_directive_runme.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/Examples/test-suite/javascript/constant_directive_runme.js b/Examples/test-suite/javascript/constant_directive_runme.js
new file mode 100644
index 000000000..2bebfffa3
--- /dev/null
+++ b/Examples/test-suite/javascript/constant_directive_runme.js
@@ -0,0 +1,36 @@
+var constant_directive = require("constant_directive");
+
+if (!constant_directive.TYPE1_CONSTANT1 instanceof constant_directive.Type1) {
+ throw new Error("Failure: TYPE1_CONSTANT1 type: " +
+ typeof constant_directive.TYPE1_CONSTANT1);
+
+}
+if (!constant_directive.getType1Instance() instanceof constant_directive.Type1) {
+ throw new Error("Failure: getType1Instance() type: " +
+ typeof constant_directive.getType1Instance());
+}
+
+if (constant_directive.TYPE1_CONSTANT1.val != 1) {
+ throw new Error("constant_directive.TYPE1_CONSTANT1.val is %r (should be 1) " +
+ constant_directive.TYPE1_CONSTANT1.val);
+}
+
+if (constant_directive.TYPE1_CONSTANT2.val != 2) {
+ throw new Error("constant_directive.TYPE1_CONSTANT2.val is %r (should be 2) " +
+ constant_directive.TYPE1_CONSTANT2.val);
+}
+
+if (constant_directive.TYPE1_CONSTANT3.val != 3) {
+ throw new Error("constant_directive.TYPE1_CONSTANT3.val is %r (should be 3) " +
+ constant_directive.TYPE1_CONSTANT3.val);
+}
+
+if (constant_directive.TYPE1CONST_CONSTANT1.val != 1) {
+ throw new Error("constant_directive.TYPE1CONST_CONSTANT1.val is %r (should be 1) " +
+ constant_directive.TYPE1CONST_CONSTANT1.val);
+}
+
+if (constant_directive.TYPE1CPTR_CONSTANT1.val != 1) {
+ throw new Error("constant_directive.TYPE1CPTR_CONSTANT1.val is %r (should be 1) " +
+ constant_directive.TYPE1CPTR_CONSTANT1.val);
+}