~ubuntu-branches/ubuntu/trusty/mozjs17/trusty

« back to all changes in this revision

Viewing changes to js/src/tests/js1_2/String/concat.js

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2013-05-25 12:24:23 UTC
  • Revision ID: package-import@ubuntu.com-20130525122423-zmxucrhtensw90xy
Tags: upstream-17.0.0
ImportĀ upstreamĀ versionĀ 17.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// |reftest| skip -- obsolete test
 
2
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
3
/* This Source Code Form is subject to the terms of the Mozilla Public
 
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 
5
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
6
 
 
7
 
 
8
/**
 
9
   Filename:     concat.js
 
10
   Description:  'This tests the new String object method: concat'
 
11
 
 
12
   Author:       NickLerissa
 
13
   Date:         Fri Feb 13 09:58:28 PST 1998
 
14
*/
 
15
 
 
16
var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
 
17
var VERSION = 'no version';
 
18
startTest();
 
19
var TITLE = 'String:concat';
 
20
 
 
21
writeHeaderToLog('Executing script: concat.js');
 
22
writeHeaderToLog( SECTION + " "+ TITLE);
 
23
 
 
24
var aString = new String("test string");
 
25
var bString = new String(" another ");
 
26
 
 
27
new TestCase( SECTION, "aString.concat(' more')", "test string more",     aString.concat(' more').toString());
 
28
new TestCase( SECTION, "aString.concat(bString)", "test string another ", aString.concat(bString).toString());
 
29
new TestCase( SECTION, "aString                ", "test string",          aString.toString());
 
30
new TestCase( SECTION, "bString                ", " another ",            bString.toString());
 
31
new TestCase( SECTION, "aString.concat(345)    ", "test string345",       aString.concat(345).toString());
 
32
new TestCase( SECTION, "aString.concat(true)   ", "test stringtrue",      aString.concat(true).toString());
 
33
new TestCase( SECTION, "aString.concat(null)   ", "test stringnull",      aString.concat(null).toString());
 
34
new TestCase( SECTION, "aString.concat([])     ", "test string[]",          aString.concat([]).toString());
 
35
new TestCase( SECTION, "aString.concat([1,2,3])", "test string[1, 2, 3]",     aString.concat([1,2,3]).toString());
 
36
 
 
37
new TestCase( SECTION, "'abcde'.concat(' more')", "abcde more",     'abcde'.concat(' more').toString());
 
38
new TestCase( SECTION, "'abcde'.concat(bString)", "abcde another ", 'abcde'.concat(bString).toString());
 
39
new TestCase( SECTION, "'abcde'                ", "abcde",          'abcde');
 
40
new TestCase( SECTION, "'abcde'.concat(345)    ", "abcde345",       'abcde'.concat(345).toString());
 
41
new TestCase( SECTION, "'abcde'.concat(true)   ", "abcdetrue",      'abcde'.concat(true).toString());
 
42
new TestCase( SECTION, "'abcde'.concat(null)   ", "abcdenull",      'abcde'.concat(null).toString());
 
43
new TestCase( SECTION, "'abcde'.concat([])     ", "abcde[]",          'abcde'.concat([]).toString());
 
44
new TestCase( SECTION, "'abcde'.concat([1,2,3])", "abcde[1, 2, 3]",     'abcde'.concat([1,2,3]).toString());
 
45
 
 
46
//what should this do:
 
47
new TestCase( SECTION, "'abcde'.concat()       ", "abcde",          'abcde'.concat().toString());
 
48
 
 
49
test();
 
50