blob: 5ed2ed0fab04128dcd3f09e53a99baf7293faa14 [file] [log] [blame]
<html>
<head>
<meta charset='utf-8'>
<style>
.pass {
font-weight: bold;
color: green;
}
.fail {
font-weight: bold;
color: red;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function SputnikError(message)
{
this.message = message;
}
SputnikError.prototype.toString = function ()
{
return 'SputnikError: ' + this.message;
};
var sputnikException;
function testPrint(msg)
{
var span = document.createElement("span");
document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace
span.innerHTML = msg + '<br />';
}
function escapeHTML(text)
{
return text.toString().replace(/&/g, "&amp;").replace(/</g, "&lt;");
}
function printTestPassed(msg)
{
testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}
function printTestFailed(msg)
{
testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}
function testFailed(msg)
{
throw new SputnikError(msg);
}
var successfullyParsed = false;
</script>
</head>
<body>
<p>S12.13_A3_T4</p>
<div id='console'></div>
<script>
try {
/**
* @name: S12.13_A3_T4;
* @section: 12.13;
* @assertion: 1. Evaluate Expression;
* @description: Evaluating array expression;
*/
var mycars = new Array();
mycars[0] = "Saab";
mycars[1] = "Volvo";
mycars[2] = "BMW";
var mycars2 = new Array();
mycars2[0] = "Mercedes";
mycars2[1] = "Jeep";
mycars2[2] = "Suzuki";
// CHECK#1
try{
throw mycars.concat(mycars2);
}
catch(e){
for (var i=0;i<3;i++){
if (e[i]!==mycars[i]) testFailed('#1.'+i+': Exception['+i+']===mycars['+i+'](operation .concat). Actual: Exception['+i+']==='+ e[i] );
}
for (var i=3;i<6;i++){
if (e[i]!==mycars2[i-3]) testFailed('#1.'+i+': Exception['+i+']===mycars2['+(i-3)+'](operation .concat). Actual: Exception['+i+']==='+ e[i] );
}
}
// CHECK#2
try{
throw new Array("Mercedes","Jeep","Suzuki");
}
catch(e){
for (var i=0;i<3;i++){
if (e[i]!==mycars2[i]) testFailed('#2.'+i+': Exception['+i+']===mycars2['+i+'](operation new). Actual: Exception['+i+']==='+ e[i] );
}
}
// CHECK#3
try{
throw mycars.concat(new Array("Mercedes","Jeep","Suzuki"));
}
catch(e){
for (var i=0;i<3;i++){
if (e[i]!==mycars[i]) testFailed('#3.'+i+': Exception['+i+']===mycars['+i+'](operation .concat(new)). Actual: Exception['+i+']==='+ e[i] );
}
for (var i=3;i<6;i++){
if (e[i]!==mycars2[i-3]) testFailed('#3.'+i+': Exception['+i+']===mycars2['+(i-3)+'](operation .concat(new)). Actual: Exception['+i+']==='+ e[i] );
}
}
} catch (ex) {
sputnikException = ex;
}
var successfullyParsed = true;
</script>
<script>
if (!successfullyParsed)
printTestFailed('successfullyParsed is not set');
else if (sputnikException)
printTestFailed(sputnikException);
else
printTestPassed("");
testPrint('<br /><span class="pass">TEST COMPLETE</span>');
</script>
</body>
</html>