summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket163TestCase.php
blob: cc78c466760cf811d8e111629890535b5a9b2938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class Ticket163TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket163');
		$this->assertTextPresent('kr 100,00');
		$this->assertTextPresent('kr 0,00');
		$this->assertTextPresent('-kr 100,00');
	}
}

?>