summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch12/12.3/12.3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch12/12.3/12.3.js')
-rw-r--r--test/suite/intl402/ch12/12.3/12.3.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/suite/intl402/ch12/12.3/12.3.js b/test/suite/intl402/ch12/12.3/12.3.js
new file mode 100644
index 000000000..7327197bf
--- /dev/null
+++ b/test/suite/intl402/ch12/12.3/12.3.js
@@ -0,0 +1,21 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @path intl402/ch12/12.3/12.3.js
+ * @description Tests that Intl.NumberFormat.prototype is an intance of
+ * Intl.NumberFormat.
+ * @author: Roozbeh Pournader
+ */
+
+var testcase = function() {
+ "use strict";
+
+ if (!(Intl.NumberFormat.prototype instanceof Intl.NumberFormat)) {
+ $ERROR("Intl.NumberFormat's prototype is not an instance of " +
+ "Intl.NumberFormat");
+ }
+
+ return true;
+}
+runTestCase(testcase);