summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.php
blob: 5292affb70d43549b891b27bca2cbc9535fe6619 (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
33
34
35
36
37
38
39
40
41
42
43
44
<?php

/**
 * ${classname}
 *
 * ${description}
 *
 * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
 * @version $Revision: 1.66 $  $Date: ${DATE} ${TIME} $
 * @package ${package}
 */
class BasicI18N extends TPage
{
}

/**
 * ${classname}
 *
 * ${description}
 *
 * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
 * @version $Revision: 1.66 $  $Date: ${DATE} ${TIME} $
 * @package ${package}
 *//*
class BasicI18NTestCase extends PradoGenericSelenium2Test
{
	function setup()
	{
		$page = Prado::getApplication()->getTestPage(__FILE__);
		$this->url($page);
	}

	function testI18N()
	{
		$this->assertEquals("Basic I18N Test", $this->title());
		$this->assertContains("Hello", $this->source());
		$this->assertContains("US$10,000.00", $this->source());
		$this->assertContains("2006年1月15日 上午12时00分00秒", $this->source());
		$this->assertContains("None", $this->source());
		$this->assertContains("One thing.", $this->source());
		$this->assertContains("Many things.", $this->source());
	}
}
*/