blob: 51b235fe11cf9c6b3ab9dd4b6b3902cbe5e76ea9 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: String.prototype.toString() is equal String.prototype.valueOf()
es5id: 15.5.4.2_A3_T1
description: >
Create new String() with various arguments and compare returned
results of toString() and valueOf()
---*/
//CHECK#1
var str = new String();
if(!(str.valueOf() == str.toString()))
$ERROR('#1: str = new String(),str.valueOf() == str.toString()');
//CHECK#2
str = new String(true);
if(!(str.valueOf() == str.toString()))
$ERROR('#2: str = new String(true),str.valueOf() == str.toString()');
//CHECK#3
str = new String(false);
if(!(str.valueOf() == str.toString()))
$ERROR('#3: str = new String(false),str.valueOf() == str.toString()');
//CHECK#4
str = new String(Math.PI);
if(!(str.valueOf() == str.toString()))
$ERROR('#4: str = new String(Math.PI),str.valueOf() == str.toString()');