uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/test3_params.js
author dadubrow
Mon, 06 Apr 2009 13:50:37 -0500
branchRCL_2_0
changeset 48 cfd7fcf6bf2d
parent 2 d760517a8095
permissions -rw-r--r--
Modifying autotest behavior from connection settings page such that for each time the user request testing, test at most 3 times with success ending autotesting


// this test gets everything through strange accessors methods

function Test() {
}

Test.prototype.getInstance = function() {
	return instance;
}

Test.prototype.getProperties = function() {
	return instance != undefined ? instance.properties : undefined;
}

Test.prototype.getNamePlusFoo = function() {
	props = instance["properties"]
	return props["name"] + "foo";
}

Test.prototype.getSizeFormatted = function() {
	size = instance.properties.size
	return size.x + "," + size["y"];
}