summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListSelectedIndexTest.php
blob: f0d8d2ef4f2777e3866284c7f5b4f5b7834445dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * TRatingListTest.php
 * 
 * @author Bradley Booms <Bradley.Booms@nsighttel.com>
 * @version Creation Date: Oct 13, 2008
 */

/**
 * TRatingListTest.php class
 * 
 * 
 * 
 * Properties
 * -
 * 
 * @author Bradley Booms <Bradley.Booms@nsighttel.com>
 * @version Modified Date: Oct 13, 2008
 * 
 * Modifications:
 */
class ActiveRatingListSelectedIndexTest extends TPage{
	public function ratingChanged($sender, $param){
		$this->Status->setText('SelectedIndex: '.$sender->getSelectedIndex());
	}
	
	public function setSelectedIndex($sender, $param){
		$this->RatingList->setSelectedIndex(5);
		$this->ratingChanged($this->RatingList, null);
	}
}
?>