aboutsummaryrefslogtreecommitdiffstats
path: root/website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json
diff options
context:
space:
mode:
Diffstat (limited to 'website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json')
-rw-r--r--website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json50
1 files changed, 50 insertions, 0 deletions
diff --git a/website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json b/website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json
new file mode 100644
index 000000000..0c8e7fbdc
--- /dev/null
+++ b/website/resources/scripts/testcases2/15.9.5.20_Date.prototype.getMinutes.json
@@ -0,0 +1,50 @@
+{
+ "testCollection": {
+ "name": "15.9.5.20_Date.prototype.getMinutes",
+ "numTests": 7,
+ "tests": [
+ {
+ "section": "15.9.5.20",
+ "description": "Checking absence of ReadOnly attribute",
+ "test": "x = Date.prototype.getMinutes;\nif(x === 1)\n Date.prototype.getMinutes = 2;\nelse\n Date.prototype.getMinutes = 1;\nif (Date.prototype.getMinutes === x) {\n $ERROR('#1: The Date.prototype.getMinutes has not the attribute ReadOnly');\n}\n\n",
+ "id": "S15.9.5.20_A1_T1"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "Checking absence of DontDelete attribute",
+ "test": "if (delete Date.prototype.getMinutes === false) {\n $ERROR('#1: The Date.prototype.getMinutes property has not the attributes DontDelete');\n}\n\nif (Date.prototype.hasOwnProperty('getMinutes')) {\n $FAIL('#2: The Date.prototype.getMinutes property has not the attributes DontDelete');\n}\n\n",
+ "id": "S15.9.5.20_A1_T2"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "Checking DontEnum attribute",
+ "test": "if (Date.prototype.propertyIsEnumerable('getMinutes')) {\n $ERROR('#1: The Date.prototype.getMinutes property has the attribute DontEnum');\n}\n\nfor(x in Date.prototype) {\n if(x === \"getMinutes\") {\n $ERROR('#2: The Date.prototype.getMinutes has the attribute DontEnum');\n }\n}\n\n",
+ "id": "S15.9.5.20_A1_T3"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "The \"length\" property of the \"getMinutes\" is 0",
+ "test": "if(Date.prototype.getMinutes.hasOwnProperty(\"length\") !== true){\n $ERROR('#1: The getMinutes has a \"length\" property');\n}\n\nif(Date.prototype.getMinutes.length !== 0){\n $ERROR('#2: The \"length\" property of the getMinutes is 0');\n}\n\n",
+ "id": "S15.9.5.20_A2_T1"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "Checking ReadOnly attribute",
+ "test": "x = Date.prototype.getMinutes.length;\nDate.prototype.getMinutes.length = 1;\nif (Date.prototype.getMinutes.length !== x) {\n $ERROR('#1: The Date.prototype.getMinutes.length has the attribute ReadOnly');\n}\n\n",
+ "id": "S15.9.5.20_A3_T1"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "Checking DontDelete attribute",
+ "test": "if (delete Date.prototype.getMinutes.length !== false) {\n $ERROR('#1: The Date.prototype.getMinutes.length property has the attributes DontDelete');\n}\n\nif (!Date.prototype.getMinutes.hasOwnProperty('length')) {\n $FAIL('#2: The Date.prototype.getMinutes.length property has the attributes DontDelete');\n}\n\n",
+ "id": "S15.9.5.20_A3_T2"
+ },
+ {
+ "section": "15.9.5.20",
+ "description": "Checking DontEnum attribute",
+ "test": "if (Date.prototype.getMinutes.propertyIsEnumerable('length')) {\n $ERROR('#1: The Date.prototype.getMinutes.length property has the attribute DontEnum');\n}\n\nfor(x in Date.prototype.getMinutes) {\n if(x === \"length\") {\n $ERROR('#2: The Date.prototype.getMinutes.length has the attribute DontEnum');\n }\n}\n\n",
+ "id": "S15.9.5.20_A3_T3"
+ }
+ ]
+ }
+}