1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_2/function/String.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +// |reftest| skip -- obsolete test 1.5 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 + 1.11 +/** 1.12 + Filename: String.js 1.13 + Description: 'This tests the function String(Object)' 1.14 + 1.15 + Author: Nick Lerissa 1.16 + Date: Fri Feb 13 09:58:28 PST 1998 1.17 +*/ 1.18 + 1.19 +var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 1.20 +var VERSION = 'no version'; 1.21 +startTest(); 1.22 +var TITLE = 'functions: String'; 1.23 + 1.24 +writeHeaderToLog('Executing script: String.js'); 1.25 +writeHeaderToLog( SECTION + " "+ TITLE); 1.26 + 1.27 +new TestCase( SECTION, "String(true) ", 1.28 + 'true', (String(true))); 1.29 +new TestCase( SECTION, "String(false) ", 1.30 + 'false', (String(false))); 1.31 +new TestCase( SECTION, "String(-124) ", 1.32 + '-124', (String(-124))); 1.33 +new TestCase( SECTION, "String(1.23) ", 1.34 + '1.23', (String(1.23))); 1.35 +new TestCase( SECTION, "String({p:1}) ", 1.36 + '{p:1}', (String({p:1}))); 1.37 +new TestCase( SECTION, "String(null) ", 1.38 + 'null', (String(null))); 1.39 +new TestCase( SECTION, "String([1,2,3]) ", 1.40 + '[1, 2, 3]', (String([1,2,3]))); 1.41 + 1.42 +test(); 1.43 +