summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/issues/tests/Issue524TestCase.php
blob: b7b022b24ab4cb969e889895431a9e486d4c12f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

/**
 * Testcase for Issue 524
 * Encoding issues caused an error when serializing the 
 * response 
 **/
class Issue524TestCase extends PradoGenericSelenium2Test
{
  function test()
  {
    $this->url('issues/index.php?page=Issue524');
    $this->assertContains('Issue 524 Test', $this->source());
    $base='ctl0_Content_';

    $this->byID("{$base}buttonOk")->click();
		$this->pause(800);
    $this->assertText("{$base}Validator", "fünf");
  }
}