S15.10.2.6_A5_T2.js (1220B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: | 6 Since assertion evaluating do not change endIndex repetition of assertion 7 does the same result 8 es5id: 15.10.2.6_A5_T2 9 description: > 10 Execute /\B\B\B\B\B\Bbot\b\b\b\b\b\b\b/.exec("robot wall-e") and 11 check results 12 ---*/ 13 14 var __executed = /\B\B\B\B\B\Bbot\b\b\b\b\b\b\b/.exec("robot wall-e"); 15 16 var __expected = ["bot"]; 17 __expected.index = 2; 18 __expected.input = "robot wall-e"; 19 20 assert.sameValue( 21 __executed.length, 22 __expected.length, 23 'The value of __executed.length is expected to equal the value of __expected.length' 24 ); 25 26 assert.sameValue( 27 __executed.index, 28 __expected.index, 29 'The value of __executed.index is expected to equal the value of __expected.index' 30 ); 31 32 assert.sameValue( 33 __executed.input, 34 __expected.input, 35 'The value of __executed.input is expected to equal the value of __expected.input' 36 ); 37 38 for(var index=0; index<__expected.length; index++) { 39 assert.sameValue( 40 __executed[index], 41 __expected[index], 42 'The value of __executed[index] is expected to equal the value of __expected[index]' 43 ); 44 } 45 46 reportCompare(0, 0);