aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.4_Prefix_Increment_Operator/S11.4.4_A3_T1.js
blob: db2b00a8f48de5372ea9d53990634d404393bc2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S11.4.4_A3_T1;
* @section: 11.4.4, 11.6.3;
* @assertion: Operator ++x returns x = ToNumber(x) + 1;
* @description: Type(x) is boolean primitive or Boolean object;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.4.4_A3_T1",

path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.4_Prefix_Increment_Operator/S11.4.4_A3_T1.js",

assertion: "Operator ++x returns x = ToNumber(x) + 1",

description: "Type(x) is boolean primitive or Boolean object",

test: function testcase() {
   //CHECK#1
var x = false; 
++x;
if (x !== 0 + 1) {
  $ERROR('#1: var x = false; ++x; x === 0 + 1. Actual: ' + (x));
}

//CHECK#2
var x = new Boolean(true); 
++x; 
if (x !== 1 + 1) {
  $ERROR('#2: var x = new Boolean(true); ++x; x === 1 + 1. Actual: ' + (x));
}

 }
});