summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/char_strings_runme.js
blob: cca50d851efd57ee19f58f129f1e1e4101cdfb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
var char_strings = require("./char_strings");

var assertIsEqual = function(expected, actual) {
  if (expected !== actual) {
    throw new Error("Expected "+expected+", was "+actual);
  }
};

assertIsEqual("hi there", char_strings.CharPingPong("hi there"));
assertIsEqual("hi there", char_strings.CharArrayPingPong("hi there"));
assertIsEqual("hi there", char_strings.CharArrayDimsPingPong("hi there"));