rhino1.7.6.testsrc.tests.js1_2.String.concat.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
gTestfile = 'concat.js';
/**
Filename: concat.js
Description: 'This tests the new String object method: concat'
Author: NickLerissa
Date: Fri Feb 13 09:58:28 PST 1998
*/
var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
var VERSION = 'no version';
startTest();
var TITLE = 'String:concat';
writeHeaderToLog('Executing script: concat.js');
writeHeaderToLog( SECTION + " "+ TITLE);
var aString = new String("test string");
var bString = new String(" another ");
new TestCase( SECTION, "aString.concat(' more')", "test string more", aString.concat(' more').toString());
new TestCase( SECTION, "aString.concat(bString)", "test string another ", aString.concat(bString).toString());
new TestCase( SECTION, "aString ", "test string", aString.toString());
new TestCase( SECTION, "bString ", " another ", bString.toString());
new TestCase( SECTION, "aString.concat(345) ", "test string345", aString.concat(345).toString());
new TestCase( SECTION, "aString.concat(true) ", "test stringtrue", aString.concat(true).toString());
new TestCase( SECTION, "aString.concat(null) ", "test stringnull", aString.concat(null).toString());
new TestCase( SECTION, "aString.concat([]) ", "test string[]", aString.concat([]).toString());
new TestCase( SECTION, "aString.concat([1,2,3])", "test string[1, 2, 3]", aString.concat([1,2,3]).toString());
new TestCase( SECTION, "'abcde'.concat(' more')", "abcde more", 'abcde'.concat(' more').toString());
new TestCase( SECTION, "'abcde'.concat(bString)", "abcde another ", 'abcde'.concat(bString).toString());
new TestCase( SECTION, "'abcde' ", "abcde", 'abcde');
new TestCase( SECTION, "'abcde'.concat(345) ", "abcde345", 'abcde'.concat(345).toString());
new TestCase( SECTION, "'abcde'.concat(true) ", "abcdetrue", 'abcde'.concat(true).toString());
new TestCase( SECTION, "'abcde'.concat(null) ", "abcdenull", 'abcde'.concat(null).toString());
new TestCase( SECTION, "'abcde'.concat([]) ", "abcde[]", 'abcde'.concat([]).toString());
new TestCase( SECTION, "'abcde'.concat([1,2,3])", "abcde[1, 2, 3]", 'abcde'.concat([1,2,3]).toString());
//what should this do:
new TestCase( SECTION, "'abcde'.concat() ", "abcde", 'abcde'.concat().toString());
test();
© 2015 - 2024 Weber Informatics LLC | Privacy Policy