From 48577f63f414dc3078abc4bdc93bde932fe666a6 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Mon, 6 Jan 2014 22:34:49 +0100 Subject: Fixed some function tests; start working on porting them to Selenium2 interface (cherry picked from commit 5d9f6fc77131d75e6c73a7e57df8d967b6b09215) Conflicts: tests/FunctionalTests/validators/tests/DatePickerTestCase.php --- tests/test_tools/PradoGenericSelenium2Test.php | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 tests/test_tools/PradoGenericSelenium2Test.php (limited to 'tests/test_tools/PradoGenericSelenium2Test.php') diff --git a/tests/test_tools/PradoGenericSelenium2Test.php b/tests/test_tools/PradoGenericSelenium2Test.php new file mode 100644 index 00000000..66350e11 --- /dev/null +++ b/tests/test_tools/PradoGenericSelenium2Test.php @@ -0,0 +1,49 @@ +setBrowser(static::$browser); + $this->setBrowserUrl(static::$baseurl); + $this->setSeleniumServerRequestsTimeout(static::$timeout); + } + + public function setUpPage() + { + $this->timeouts()->implicitWait(static::$wait); + } + + protected function open($url) + { + $this->url($url); + } + + protected function tearDown() + { + } + + protected function verifyTextPresent($txt) + { + $this->assertContains($txt, $this->source()); + } + + protected function assertText($id, $txt) + { + $element = $this->byId($id); + $this->assertEquals($txt, $element->text()); + } + + protected function pause($msec) + { + usleep($msec*1000); + } + +} \ No newline at end of file -- cgit v1.2.3 From 9ed5986ef0036397a02ecc413eb1ed5c1ffcdc01 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Wed, 19 Feb 2014 19:27:30 +0100 Subject: Update local tests path (cherry picked from commit ae7a187ec50d2a4d68fc9b22acf7d46660eca402) --- tests/test_tools/PradoGenericSelenium2Test.php | 4 ++-- tests/test_tools/PradoGenericSeleniumTest.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/test_tools/PradoGenericSelenium2Test.php') diff --git a/tests/test_tools/PradoGenericSelenium2Test.php b/tests/test_tools/PradoGenericSelenium2Test.php index 66350e11..d6cac6d1 100644 --- a/tests/test_tools/PradoGenericSelenium2Test.php +++ b/tests/test_tools/PradoGenericSelenium2Test.php @@ -4,8 +4,8 @@ require_once 'PHPUnit/Extensions/Selenium2TestCase.php'; // TODO: stub class PradoGenericSelenium2Test extends PHPUnit_Extensions_Selenium2TestCase { - static $browser='chrome'; - static $baseurl='http://127.0.0.1/prado-3.2/tests/FunctionalTests/'; + static $browser='firefox'; + static $baseurl='http://127.0.0.1/prado-master/tests/FunctionalTests/'; static $timeout=5; //seconds static $wait=1000; //msecs diff --git a/tests/test_tools/PradoGenericSeleniumTest.php b/tests/test_tools/PradoGenericSeleniumTest.php index 9a60f95a..48702387 100644 --- a/tests/test_tools/PradoGenericSeleniumTest.php +++ b/tests/test_tools/PradoGenericSeleniumTest.php @@ -3,8 +3,8 @@ require_once 'PHPUnit/Extensions/SeleniumTestCase.php'; class PradoGenericSeleniumTest extends PHPUnit_Extensions_SeleniumTestCase { - static $browser='*googlechrome'; - static $baseurl='http://127.0.0.1/prado-3.2/tests/FunctionalTests/'; + static $browser='*firefox'; + static $baseurl='http://127.0.0.1/prado-master/tests/FunctionalTests/'; protected function setUp() { -- cgit v1.2.3 From 4b6d2eab3433bb42671b6b60c28a3ec0434d1983 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Mon, 24 Feb 2014 23:39:28 +0100 Subject: Cross-browser tests (cherry picked from commit b340ed9cc57f327785ebc0c1b8fb725ffb02d647) --- tests/test_tools/PradoGenericSelenium2Test.php | 36 ++++++++++++++++++++++--- tests/test_tools/PradoGenericSeleniumTest.php | 37 +++++++++++++++++++++++--- 2 files changed, 66 insertions(+), 7 deletions(-) (limited to 'tests/test_tools/PradoGenericSelenium2Test.php') diff --git a/tests/test_tools/PradoGenericSelenium2Test.php b/tests/test_tools/PradoGenericSelenium2Test.php index d6cac6d1..b56fd9c8 100644 --- a/tests/test_tools/PradoGenericSelenium2Test.php +++ b/tests/test_tools/PradoGenericSelenium2Test.php @@ -4,14 +4,44 @@ require_once 'PHPUnit/Extensions/Selenium2TestCase.php'; // TODO: stub class PradoGenericSelenium2Test extends PHPUnit_Extensions_Selenium2TestCase { - static $browser='firefox'; - static $baseurl='http://127.0.0.1/prado-master/tests/FunctionalTests/'; + public static $browsers = array( + /* + array( + 'name' => 'Firefox on OSX', + 'browser' => '*firefox', + 'host' => '127.0.0.1', + 'port' => 4444, + 'timeout' => 30000, + ), + array( + 'name' => 'Chrome on OSX', + 'browser' => '*chrome', + 'host' => '127.0.0.1', + 'port' => 4444, + 'timeout' => 30000, + ), + array( + 'name' => 'Internet Explorer 11 on Windows8.1', + 'browser' => '*iexplore', + 'host' => '192.168.253.39', + 'port' => 4444, + ), + */ + array( + 'name' => 'Internet Explorer 8 on WindowsXP', + 'browserName' => '*iehta', + 'host' => '127.0.0.1', + 'port' => 4444, + ) + ); + + static $baseurl='http://10.0.2.2/prado-master/tests/FunctionalTests/'; + static $timeout=5; //seconds static $wait=1000; //msecs protected function setUp() { - $this->setBrowser(static::$browser); $this->setBrowserUrl(static::$baseurl); $this->setSeleniumServerRequestsTimeout(static::$timeout); } diff --git a/tests/test_tools/PradoGenericSeleniumTest.php b/tests/test_tools/PradoGenericSeleniumTest.php index 48702387..66502210 100644 --- a/tests/test_tools/PradoGenericSeleniumTest.php +++ b/tests/test_tools/PradoGenericSeleniumTest.php @@ -3,13 +3,42 @@ require_once 'PHPUnit/Extensions/SeleniumTestCase.php'; class PradoGenericSeleniumTest extends PHPUnit_Extensions_SeleniumTestCase { - static $browser='*firefox'; - static $baseurl='http://127.0.0.1/prado-master/tests/FunctionalTests/'; + public static $browsers = array( + /* + array( + 'name' => 'Firefox on OSX', + 'browser' => '*firefox', + 'host' => '127.0.0.1', + 'port' => 4444, + 'timeout' => 30000, + ), + array( + 'name' => 'Chrome on OSX', + 'browser' => '*chrome', + 'host' => '127.0.0.1', + 'port' => 4444, + 'timeout' => 30000, + ), + array( + 'name' => 'Internet Explorer 11 on Windows8.1', + 'browser' => '*iexplore', + 'host' => '192.168.253.39', + 'port' => 4444, + ), + */ + array( + 'name' => 'Internet Explorer 8 on WindowsXP', + 'browser' => '*iehta', + 'host' => '127.0.0.1', + 'port' => 4444, + ) + ); + + static $baseurl='http://10.0.2.2/prado-master/tests/FunctionalTests/'; protected function setUp() { - $this->shareSession(true); - $this->setBrowser(static::$browser); +// $this->shareSession(true); $this->setBrowserUrl(static::$baseurl); } -- cgit v1.2.3 From 3db08b4d991c02870d04f7198d65fd926805709c Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 25 Feb 2014 22:43:00 +0100 Subject: Ensure all tests have a proper doctype and html structure, to avoid browser's quirks mode (cherry picked from commit a0d6864093cf13a96dafa8a47b5c43891b2b864f) Conflicts: tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page --- .../protected/pages/ActiveBricksTest.page | 4 +-- .../protected/pages/ActiveButtonTest.page | 4 +-- .../protected/pages/ActiveCheckBoxTest.page | 4 +-- .../pages/ActiveControlExpressionTag.page | 4 +-- .../protected/pages/ActiveControlWithTinyMce.page | 4 +-- .../protected/pages/ActiveDatePicker.page | 9 ++--- .../protected/pages/ActiveDropDownList.page | 4 +-- .../protected/pages/ActiveHiddenFieldTest.page | 4 +-- .../protected/pages/ActiveHyperLinkTest.page | 4 +-- .../protected/pages/ActiveImageButtonTest.page | 4 +-- .../protected/pages/ActiveLinkButtonTest.page | 4 +-- .../protected/pages/ActiveListBoxTest.page | 4 +-- .../protected/pages/ActivePanelTest.page | 8 ++--- .../protected/pages/ActivePanelVisibleTest.page | 4 +-- .../protected/pages/ActiveRadioButtonListTest.page | 4 +-- .../protected/pages/ActiveRadioButtonTest.page | 4 +-- .../pages/ActiveRatingListAllowInputTest.page | 5 ++- .../pages/ActiveRatingListAutoPostBackTest.page | 5 ++- .../pages/ActiveRatingListCheckBoxesTest.page | 5 ++- .../pages/ActiveRatingListEnabledTest.page | 5 ++- .../pages/ActiveRatingListHoverCaptionTest.page | 5 ++- .../pages/ActiveRatingListRatingTest.page | 5 ++- .../pages/ActiveRatingListReadOnlyTest.page | 5 ++- .../pages/ActiveRatingListSelectedIndexTest.page | 5 ++- .../protected/pages/ActiveRedirectionTest.page | 4 +-- .../protected/pages/ActiveTextBoxCallback.page | 4 +-- .../protected/pages/AutoCompleteTest.page | 4 +-- .../protected/pages/Calculator.page | 18 +++++----- .../active-controls/protected/pages/Callback.page | 4 +-- .../pages/CallbackCustomValidatorTest.page | 4 +-- .../protected/pages/CallbackOptionsTest.page | 4 +-- .../protected/pages/ClientSideDispatch.page | 4 +-- .../protected/pages/ControlAdapterTest.page | 4 +-- .../protected/pages/CustomTemplateControlTest.page | 4 +-- .../protected/pages/CustomValidatorByPass.page | 4 +-- .../protected/pages/DatePickerInCallback.page | 4 +-- .../protected/pages/DelayedCallback.page | 4 +-- .../protected/pages/DisplayStyleTest.page | 4 +-- .../protected/pages/DynamicRepeaterDataTest.page | 4 +-- .../protected/pages/EventTriggeredCallback.page | 4 +-- .../protected/pages/FeatureList.page | 6 ++-- .../active-controls/protected/pages/GerTurno2.page | 4 +-- .../protected/pages/InPlaceWithValidator.page | 5 ++- .../protected/pages/LargePageStateTest.page | 4 +-- .../protected/pages/LargePageStateTest2.page | 4 +-- .../active-controls/protected/pages/Layout.php | 5 +++ .../active-controls/protected/pages/Layout.tpl | 38 ++++++++++++++++++++++ .../protected/pages/MessagesPanelTest.page | 4 +-- .../protected/pages/MyTabPanelTest.page | 4 +-- .../protected/pages/NestedActiveControls.page | 4 +-- .../protected/pages/NullStateTest.page | 4 +-- .../protected/pages/PopulateActiveList.page | 4 +-- .../protected/pages/PostLoadingTest.page | 5 ++- .../protected/pages/RadioButtonListTest.page | 4 +-- .../protected/pages/RatingList.page | 5 ++- .../pages/RepeaterWithActiveControls.page | 4 +-- .../protected/pages/ReplaceContentTest.page | 4 +-- .../protected/pages/Sessioned/PageStateTest.page | 7 ++-- .../protected/pages/TActiveCheckBoxListTest.page | 4 +-- .../pages/TActiveFileUploadAutoPostBackTest.page | 4 +-- .../protected/pages/TInPlaceTextBoxTest.page | 5 ++- .../protected/pages/TextBoxValidationCallback.page | 4 +-- .../protected/pages/TimeTriggeredCallbackTest.page | 4 +-- .../protected/pages/ValueTriggerCallbackTest.page | 5 ++- .../active-controls/protected/pages/config.xml | 5 +++ tests/test_tools/PradoGenericSelenium2Test.php | 22 +++++++------ tests/test_tools/PradoGenericSeleniumTest.php | 24 +++++++------- 67 files changed, 207 insertions(+), 176 deletions(-) create mode 100755 tests/FunctionalTests/active-controls/protected/pages/Layout.php create mode 100755 tests/FunctionalTests/active-controls/protected/pages/Layout.tpl create mode 100755 tests/FunctionalTests/active-controls/protected/pages/config.xml (limited to 'tests/test_tools/PradoGenericSelenium2Test.php') diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveBricksTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveBricksTest.page index 4ea65f04..f3df76a2 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveBricksTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveBricksTest.page @@ -1,4 +1,4 @@ - +

Some AJAX Tests

@@ -37,4 +37,4 @@ AIP -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveButtonTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveButtonTest.page index a5788625..9e293934 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveButtonTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveButtonTest.page @@ -1,4 +1,4 @@ - +

TActiveButton Functional Test

-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page index cea4d3d8..297cde15 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page @@ -1,4 +1,4 @@ - +

Active CheckBox Test

@@ -25,4 +25,4 @@ position: absolute; right: 0; top: 0"> Loading... -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlExpressionTag.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlExpressionTag.page index b4ce61d4..5a1c5023 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlExpressionTag.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlExpressionTag.page @@ -1,4 +1,4 @@ - +

Active Control With Expression Tag Test

@@ -23,4 +23,4 @@ OnCallback="button2_callback" /> -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page index c6748403..9a561458 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page @@ -1,4 +1,4 @@ - +

Active Control with TinyMCE

@@ -7,4 +7,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveDatePicker.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveDatePicker.page index 88117744..8d38c758 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveDatePicker.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveDatePicker.page @@ -1,7 +1,4 @@ - - - - +

TActiveDatePicker test

@@ -23,6 +20,4 @@ ShowCalendar=false
- - - \ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveDropDownList.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveDropDownList.page index 4fcd789a..bf15ba0e 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveDropDownList.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveDropDownList.page @@ -1,4 +1,4 @@ - +

Active Drop Down List Test Case

@@ -26,4 +26,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHiddenFieldTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveHiddenFieldTest.page index 837cc580..317da643 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHiddenFieldTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHiddenFieldTest.page @@ -1,4 +1,4 @@ - +

Active HiddenField Test Case

@@ -12,4 +12,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page index 740c3b21..9b149b45 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page @@ -1,4 +1,4 @@ - +

Active HyperLink Test Case

@@ -8,4 +8,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveImageButtonTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveImageButtonTest.page index ff0f588f..15cf2380 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveImageButtonTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveImageButtonTest.page @@ -1,4 +1,4 @@ - +

TActiveImageButton Functional Test

@@ -19,4 +19,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveLinkButtonTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveLinkButtonTest.page index 39c53fe8..16ea578d 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveLinkButtonTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveLinkButtonTest.page @@ -1,4 +1,4 @@ - +

TActiveLinkButton Functional Test

-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveListBoxTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveListBoxTest.page index bf13a61b..2bf480b4 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveListBoxTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveListBoxTest.page @@ -1,4 +1,4 @@ - +

Active List Box Functional Test

@@ -22,4 +22,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page index a836de5b..2ba1c6ba 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page @@ -1,4 +1,4 @@ - +

Active Panel replacement tests

@@ -16,6 +16,6 @@ { Prado.Callback("<%= $this->callback1->UniqueID %>") }) - }) - -
\ No newline at end of file + }) + + diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelVisibleTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelVisibleTest.page index cb2802e5..93684bef 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelVisibleTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelVisibleTest.page @@ -1,4 +1,4 @@ - +

ActivePanel Visible Test

@@ -13,4 +13,4 @@ bar -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonListTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonListTest.page index 1c59cfed..e222a70f 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonListTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonListTest.page @@ -1,4 +1,4 @@ - +

TActiveRadioButtonList Test Case

@@ -17,4 +17,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonTest.page index 18e4fc37..66587943 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRadioButtonTest.page @@ -1,4 +1,4 @@ - +

Active Radio Button Test

Loading... -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAllowInputTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAllowInputTest.page index 35fcadc7..d3c551b4 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAllowInputTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAllowInputTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList AllowInput Test Case

@@ -11,4 +10,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAutoPostBackTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAutoPostBackTest.page index 84ce4ef3..e0d3cbbe 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAutoPostBackTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListAutoPostBackTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList AutoPostBack Test Case

@@ -13,4 +12,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListCheckBoxesTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListCheckBoxesTest.page index 36f4404d..cba50947 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListCheckBoxesTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListCheckBoxesTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList Check Boxes Test Case

@@ -9,4 +8,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListEnabledTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListEnabledTest.page index 5f732e0d..791176df 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListEnabledTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListEnabledTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList Enabled Test Case

@@ -14,4 +13,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListHoverCaptionTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListHoverCaptionTest.page index 01e47a34..0a2a5f50 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListHoverCaptionTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListHoverCaptionTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList Hover Caption Test Case

@@ -11,4 +10,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListRatingTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListRatingTest.page index 942a5b45..c9aed5b4 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListRatingTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListRatingTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList Rating Test Case

@@ -14,4 +13,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListReadOnlyTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListReadOnlyTest.page index dad3fd6e..70220e58 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListReadOnlyTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListReadOnlyTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList ReadOnly Test Case

@@ -14,4 +13,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListSelectedIndexTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListSelectedIndexTest.page index 6fb52822..ee26568d 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListSelectedIndexTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListSelectedIndexTest.page @@ -1,5 +1,4 @@ - - +

TActiveRatingList SelectedIndex Test Case

@@ -14,4 +13,4 @@
-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveRedirectionTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveRedirectionTest.page index fa0d8caa..8f4e175d 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveRedirectionTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveRedirectionTest.page @@ -1,7 +1,7 @@ - +

Redirection Test

-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveTextBoxCallback.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveTextBoxCallback.page index d0a750ac..50b244b5 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveTextBoxCallback.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveTextBoxCallback.page @@ -1,5 +1,5 @@ - +

ActiveTextBox Callback Test

-
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/AutoCompleteTest.page b/tests/FunctionalTests/active-controls/protected/pages/AutoCompleteTest.page index f4fffc63..98745b55 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/AutoCompleteTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/AutoCompleteTest.page @@ -1,4 +1,4 @@ - + -
-
\ No newline at end of file +
\ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest.page b/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest.page index c265f9d2..b4798fe1 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest.page @@ -1,4 +1,4 @@ - +

Large Page State Test

@@ -8,4 +8,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest2.page b/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest2.page index 168b7b8c..56ad075e 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest2.page +++ b/tests/FunctionalTests/active-controls/protected/pages/LargePageStateTest2.page @@ -1,5 +1,5 @@ <%@ StatePersisterClass="System.Web.UI.TSessionPageStatePersister" %> - +

Large Page State Test (using Session page state)

@@ -9,4 +9,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/Layout.php b/tests/FunctionalTests/active-controls/protected/pages/Layout.php new file mode 100755 index 00000000..723f200c --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/Layout.php @@ -0,0 +1,5 @@ + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/MessagesPanelTest.page b/tests/FunctionalTests/active-controls/protected/pages/MessagesPanelTest.page index 248d1760..33868332 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/MessagesPanelTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/MessagesPanelTest.page @@ -1,6 +1,6 @@ - + - \ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/MyTabPanelTest.page b/tests/FunctionalTests/active-controls/protected/pages/MyTabPanelTest.page index 5e04cd28..c877c083 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/MyTabPanelTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/MyTabPanelTest.page @@ -1,4 +1,4 @@ - +

My Tab Panel Test

@@ -37,4 +37,4 @@ -
+ diff --git a/tests/FunctionalTests/active-controls/protected/pages/NestedActiveControls.page b/tests/FunctionalTests/active-controls/protected/pages/NestedActiveControls.page index a7875c0d..2c6304b2 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/NestedActiveControls.page +++ b/tests/FunctionalTests/active-controls/protected/pages/NestedActiveControls.page @@ -1,4 +1,4 @@ - +

Nested Active Controls Test

@@ -24,4 +24,4 @@ }) -
+ diff --git a/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page index 64643177..6b5ed334 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page @@ -1,4 +1,4 @@ - +

Null State Test

@@ -6,4 +6,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.page b/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.page index 24cdb366..3ab9d8fb 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.page +++ b/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.page @@ -1,4 +1,4 @@ - +

Populate active list controls

@@ -13,4 +13,4 @@ -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page index 885b368f..980ea4d8 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page @@ -1,4 +1,4 @@ - +

PostLoading Test

@@ -18,5 +18,4 @@ }) }) - -
\ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page b/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page index 9d900e15..e1a2cb93 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page @@ -1,4 +1,4 @@ - + - \ No newline at end of file + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/RatingList.page b/tests/FunctionalTests/active-controls/protected/pages/RatingList.page index d50e5929..6cb9d34a 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/RatingList.page +++ b/tests/FunctionalTests/active-controls/protected/pages/RatingList.page @@ -1,5 +1,4 @@ - - +