aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A17.js
blob: 7f7bbe2986bc9e902dc2eb1e9dbd59df9311ca42 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S12.14_A17;
 * @section: 12.14;
 * @assertion: Using "try" with "catch" or "finally" statement in a constructor;
 * @description: Creating exceptions within constructor;
 */


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S12.14_A17",

path: "TestCases/12_Statement/12.14_The_try_Statement/S12.14_A17.js",

assertion: "Using \"try\" with \"catch\" or \"finally\" statement in a constructor",

description: "Creating exceptions within constructor",

test: function testcase() {
   var i=1;
function Integer( value, exception ) {
  try{
    this.value = checkValue( value );
    if(exception) $ERROR('#'+i+'.1: Must be exception');
  }
  catch(e){
    this.value = e.toString();
    if(!exception) $ERROR('#'+i+'.2: Don`t must be exception');
  }
  i++;
}

function checkValue(value){
  if(Math.floor(value)!=value||isNaN(value)){
    throw (INVALID_INTEGER_VALUE +": " + value);
  }
  else{
    return value;
  }
}

// CHECK#1
new Integer(13, false);
// CHECK#2
new Integer(NaN, true);
// CHECK#3
new Integer(0, false);
// CHECK#4
new Integer(Infinity, false);
// CHECK#5
new Integer(-1.23, true);
// CHECK#6
new Integer(Math.LN2, true);

 }
});