From cb7b7f1929dce12936eca957caa432e74c6dc7de Mon Sep 17 00:00:00 2001 From: xue <> Date: Sun, 12 Mar 2006 04:43:03 +0000 Subject: reorganized FT tests. --- tests/FunctionalTests/features.php | 39 ++++++++++ tests/FunctionalTests/features/index.php | 8 ++ .../features/protected/application.xml | 9 +++ .../features/protected/controls/Layout.php | 8 ++ .../features/protected/controls/Layout.tpl | 27 +++++++ .../features/protected/pages/ColorPicker.page | 40 ++++++++++ .../features/protected/pages/DatePicker.page | 59 +++++++++++++++ .../features/protected/pages/FeatureList.page | 3 + .../features/protected/pages/FeatureList.php | 34 +++++++++ .../features/protected/pages/HtmlArea.page | 10 +++ .../features/protected/pages/I18N/BasicI18N.page | 31 ++++++++ .../features/protected/pages/I18N/BasicI18N.php | 45 ++++++++++++ .../features/protected/pages/I18N/Home.page | 3 + .../features/protected/pages/I18N/Home.zh_CN.page | 3 + .../features/protected/pages/I18N/config.xml | 12 +++ .../features/protected/pages/RatingList.page | 41 +++++++++++ tests/FunctionalTests/index.php | 9 ++- tests/FunctionalTests/protected/application.xml | 18 ----- tests/FunctionalTests/protected/pages/Home.page | 6 -- .../protected/pages/Home.zh_CN.page | 34 --------- .../protected/pages/I18N/BasicI18N.page | 31 -------- .../protected/pages/I18N/BasicI18N.php | 45 ------------ tests/FunctionalTests/protected/pages/Layout.php | 8 -- tests/FunctionalTests/protected/pages/Layout.tpl | 37 ---------- .../protected/pages/TicketTestPage.php | 14 ---- .../protected/pages/TicketTestPage.tpl | 45 ------------ .../protected/pages/UI/ColorPicker.page | 40 ---------- .../protected/pages/UI/DatePicker.page | 59 --------------- .../protected/pages/UI/RatingList.page | 41 ----------- .../protected/pages/UI/testHtmlArea.page | 10 --- .../protected/pages/ViewSource.page | 23 ------ .../FunctionalTests/protected/pages/ViewSource.php | 85 ---------------------- tests/FunctionalTests/protected/pages/config.xml | 11 --- tests/FunctionalTests/tickets/application.xml | 4 - 34 files changed, 378 insertions(+), 514 deletions(-) create mode 100644 tests/FunctionalTests/features.php create mode 100644 tests/FunctionalTests/features/index.php create mode 100644 tests/FunctionalTests/features/protected/application.xml create mode 100644 tests/FunctionalTests/features/protected/controls/Layout.php create mode 100644 tests/FunctionalTests/features/protected/controls/Layout.tpl create mode 100644 tests/FunctionalTests/features/protected/pages/ColorPicker.page create mode 100644 tests/FunctionalTests/features/protected/pages/DatePicker.page create mode 100644 tests/FunctionalTests/features/protected/pages/FeatureList.page create mode 100644 tests/FunctionalTests/features/protected/pages/FeatureList.php create mode 100644 tests/FunctionalTests/features/protected/pages/HtmlArea.page create mode 100644 tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.page create mode 100644 tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.php create mode 100644 tests/FunctionalTests/features/protected/pages/I18N/Home.page create mode 100644 tests/FunctionalTests/features/protected/pages/I18N/Home.zh_CN.page create mode 100644 tests/FunctionalTests/features/protected/pages/I18N/config.xml create mode 100644 tests/FunctionalTests/features/protected/pages/RatingList.page delete mode 100644 tests/FunctionalTests/protected/application.xml delete mode 100644 tests/FunctionalTests/protected/pages/Home.page delete mode 100644 tests/FunctionalTests/protected/pages/Home.zh_CN.page delete mode 100644 tests/FunctionalTests/protected/pages/I18N/BasicI18N.page delete mode 100644 tests/FunctionalTests/protected/pages/I18N/BasicI18N.php delete mode 100644 tests/FunctionalTests/protected/pages/Layout.php delete mode 100644 tests/FunctionalTests/protected/pages/Layout.tpl delete mode 100644 tests/FunctionalTests/protected/pages/TicketTestPage.php delete mode 100644 tests/FunctionalTests/protected/pages/TicketTestPage.tpl delete mode 100644 tests/FunctionalTests/protected/pages/UI/ColorPicker.page delete mode 100644 tests/FunctionalTests/protected/pages/UI/DatePicker.page delete mode 100644 tests/FunctionalTests/protected/pages/UI/RatingList.page delete mode 100644 tests/FunctionalTests/protected/pages/UI/testHtmlArea.page delete mode 100644 tests/FunctionalTests/protected/pages/ViewSource.page delete mode 100644 tests/FunctionalTests/protected/pages/ViewSource.php delete mode 100644 tests/FunctionalTests/protected/pages/config.xml delete mode 100644 tests/FunctionalTests/tickets/application.xml (limited to 'tests') diff --git a/tests/FunctionalTests/features.php b/tests/FunctionalTests/features.php new file mode 100644 index 00000000..71c8ce3a --- /dev/null +++ b/tests/FunctionalTests/features.php @@ -0,0 +1,39 @@ +get_directories(dirname(__FILE__).'/features/tests', $groups); + + return $groups; + } + + protected function get_directories($base,&$groups) + { + $groups[] = realpath($base); + $dirs = new DirectoryIterator($base); + foreach($dirs as $dir) + if(!$dir->isDot() && $dir->isDir() + && !preg_match("/\.svn/", $dir->getPathName())) + $this->get_directories($dir->getPathName(), $groups); + } +} + + +$root = dirname(__FILE__); +$server = SimpleSeleniumProxyServer::getInstance($root); + +$tester = new PradoSimpleTester(new BrowserTestConfig()); +$browser_tests = $tester->getTests(); +$browser_tests->run(new SimpleReporter()); + +$server->handleRequest(); + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/features/index.php b/tests/FunctionalTests/features/index.php new file mode 100644 index 00000000..fe127639 --- /dev/null +++ b/tests/FunctionalTests/features/index.php @@ -0,0 +1,8 @@ +run(); + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/application.xml b/tests/FunctionalTests/features/protected/application.xml new file mode 100644 index 00000000..642152cc --- /dev/null +++ b/tests/FunctionalTests/features/protected/application.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/controls/Layout.php b/tests/FunctionalTests/features/protected/controls/Layout.php new file mode 100644 index 00000000..2c6e02d6 --- /dev/null +++ b/tests/FunctionalTests/features/protected/controls/Layout.php @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/controls/Layout.tpl b/tests/FunctionalTests/features/protected/controls/Layout.tpl new file mode 100644 index 00000000..18482377 --- /dev/null +++ b/tests/FunctionalTests/features/protected/controls/Layout.tpl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/ColorPicker.page b/tests/FunctionalTests/features/protected/pages/ColorPicker.page new file mode 100644 index 00000000..3d8c46db --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/ColorPicker.page @@ -0,0 +1,40 @@ + + +
+ + +

asda

+

asda

+

asda

+ +

asda

+

asda

+ +
+ + +

asda

+

asda

+

asda

+ +
+ +

asda

+ +
+ +

asda

+

asda

+ +

asda

+

asda

+

asda

+

asda

+

asda

+

asda

+

asda

+

asda

+

asda

+ + +
\ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/DatePicker.page b/tests/FunctionalTests/features/protected/pages/DatePicker.page new file mode 100644 index 00000000..4347f748 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/DatePicker.page @@ -0,0 +1,59 @@ + + +

TDatePicker Samples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Default TDatePicker + +
Button Mode + +
InputMode="DropDownList", custom DateFormat + +
InputMode="DropDownList", custom DateFormat, Culture + +
Custom DateFormat, culture, ImageButton mode + +
Custom DateFormat, DropDownList, pre-selected date set in as Text + +
DropDownList, pre-selected date as integer + /> +
+ +
\ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/FeatureList.page b/tests/FunctionalTests/features/protected/pages/FeatureList.page new file mode 100644 index 00000000..ef25ccb9 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/FeatureList.page @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/FeatureList.php b/tests/FunctionalTests/features/protected/pages/FeatureList.php new file mode 100644 index 00000000..7f82d34e --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/FeatureList.php @@ -0,0 +1,34 @@ +getPageList(dirname(__FILE__),''); + $this->List->DataSource=$list; + $this->List->dataBind(); + } + + protected function getPageList($directory,$basePath) + { + $list=array(); + $folder=@opendir($directory); + while($entry=@readdir($folder)) + { + if($entry[0]==='.') + continue; + else if(is_file($directory.'/'.$entry)) + { + if(($page=basename($entry,'.page'))!==$entry && strpos($page,'.')===false) + $list['?page='.$basePath.$page]=$basePath.$page; + } + else + $list=array_merge($list,$this->getPageList($directory.'/'.$entry,$basePath.$entry.'.')); + } + closedir($folder); + return $list; + } +} + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/HtmlArea.page b/tests/FunctionalTests/features/protected/pages/HtmlArea.page new file mode 100644 index 00000000..8b56f48d --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/HtmlArea.page @@ -0,0 +1,10 @@ +<%@ Application.Globalization.Charset="GB2312" %> + + + + + plugins : "contextmenu,paste", + language: "zh_CN" + + + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.page b/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.page new file mode 100644 index 00000000..e13eecf2 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.page @@ -0,0 +1,31 @@ +<%@ Title="Basic I18N Test" Application.Globalization.Culture="zh_CN" %> + +

Basic I18N Test

+ + Hello {name} + + + Name + + + + +
+ +
+
+ +
+ + [0] None |[1] One thing. |[2,Inf) Many things. +
+ + + [0] None |[1] One thing. |[2,Inf) Many things. +
+ + + [0] None |[1] One thing. |[2,Inf) Many things. + +
+
\ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.php b/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.php new file mode 100644 index 00000000..cac0a04e --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/I18N/BasicI18N.php @@ -0,0 +1,45 @@ + + * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ + * @package ${package} + */ +class BasicI18N extends TPage +{ +} + +/** + * ${classname} + * + * ${description} + * + * @author Wei Zhuo + * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ + * @package ${package} + *//* +class BasicI18NTestCase extends SeleniumTestCase +{ + function setup() + { + $page = Prado::getApplication()->getTestPage(__FILE__); + $this->open($page); + } + + function testI18N() + { + $this->verifyTitle("Basic I18N Test", ""); + $this->verifyTextPresent("Hello", ""); + $this->verifyTextPresent("US$10,000.00", ""); + $this->verifyTextPresent("2006年1月15日 上午12时00分00秒", ""); + $this->verifyTextPresent("None", ""); + $this->verifyTextPresent("One thing.", ""); + $this->verifyTextPresent("Many things.", ""); + } +} +*/ +?> \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/I18N/Home.page b/tests/FunctionalTests/features/protected/pages/I18N/Home.page new file mode 100644 index 00000000..9a49e3a2 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/I18N/Home.page @@ -0,0 +1,3 @@ + +

Prado Functional Tests

+
\ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/I18N/Home.zh_CN.page b/tests/FunctionalTests/features/protected/pages/I18N/Home.zh_CN.page new file mode 100644 index 00000000..1b931cc2 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/I18N/Home.zh_CN.page @@ -0,0 +1,3 @@ + +

Prado Functional Tests (Chinese)

+
\ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/I18N/config.xml b/tests/FunctionalTests/features/protected/pages/I18N/config.xml new file mode 100644 index 00000000..25e26ac5 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/I18N/config.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/FunctionalTests/features/protected/pages/RatingList.page b/tests/FunctionalTests/features/protected/pages/RatingList.page new file mode 100644 index 00000000..909180c7 --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/RatingList.page @@ -0,0 +1,41 @@ + +

TRatingList Examples

+ +

Default TRatingList

+ + + + + + + +

TRatingList

+ + + + + + + + + +

TRatingList

+ + + + + + + + + +

TRatingList

+ + + + + + + + +
\ No newline at end of file diff --git a/tests/FunctionalTests/index.php b/tests/FunctionalTests/index.php index 7cf01abd..2cfcfd1f 100644 --- a/tests/FunctionalTests/index.php +++ b/tests/FunctionalTests/index.php @@ -5,8 +5,11 @@ Prado Functional Test Suites -Tests of QuickStart Tutorial Demo -
-Tests of Trac Tickets +

Prado Functional Test Suites

+ \ No newline at end of file diff --git a/tests/FunctionalTests/protected/application.xml b/tests/FunctionalTests/protected/application.xml deleted file mode 100644 index 53e73457..00000000 --- a/tests/FunctionalTests/protected/application.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/Home.page b/tests/FunctionalTests/protected/pages/Home.page deleted file mode 100644 index bf2830d6..00000000 --- a/tests/FunctionalTests/protected/pages/Home.page +++ /dev/null @@ -1,6 +0,0 @@ - - -

Prado Functional Tests

- -
-
\ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/Home.zh_CN.page b/tests/FunctionalTests/protected/pages/Home.zh_CN.page deleted file mode 100644 index df7a9cc0..00000000 --- a/tests/FunctionalTests/protected/pages/Home.zh_CN.page +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - Prado Functional Tests (zh_CN) - - - - - -

Prado Functional Tests (zh_CN)

- -
- - Validate XHTML 1.0 - -
- - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/I18N/BasicI18N.page b/tests/FunctionalTests/protected/pages/I18N/BasicI18N.page deleted file mode 100644 index e13eecf2..00000000 --- a/tests/FunctionalTests/protected/pages/I18N/BasicI18N.page +++ /dev/null @@ -1,31 +0,0 @@ -<%@ Title="Basic I18N Test" Application.Globalization.Culture="zh_CN" %> - -

Basic I18N Test

- - Hello {name} - - - Name - - - - -
- -
-
- -
- - [0] None |[1] One thing. |[2,Inf) Many things. -
- - - [0] None |[1] One thing. |[2,Inf) Many things. -
- - - [0] None |[1] One thing. |[2,Inf) Many things. - -
-
\ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php b/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php deleted file mode 100644 index 6920f439..00000000 --- a/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php +++ /dev/null @@ -1,45 +0,0 @@ - - * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ - * @package ${package} - */ -class BasicI18N extends TPage -{ -} - -/** - * ${classname} - * - * ${description} - * - * @author Wei Zhuo - * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ - * @package ${package} - */ -class BasicI18NTestCase extends SeleniumTestCase -{ - function setup() - { - $page = Prado::getApplication()->getTestPage(__FILE__); - $this->open($page); - } - - function testI18N() - { - $this->verifyTitle("Basic I18N Test", ""); - $this->verifyTextPresent("Hello", ""); - $this->verifyTextPresent("US$10,000.00", ""); - $this->verifyTextPresent("2006年1月15日 上午12时00分00秒", ""); - $this->verifyTextPresent("None", ""); - $this->verifyTextPresent("One thing.", ""); - $this->verifyTextPresent("Many things.", ""); - } -} - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/Layout.php b/tests/FunctionalTests/protected/pages/Layout.php deleted file mode 100644 index 2c6e02d6..00000000 --- a/tests/FunctionalTests/protected/pages/Layout.php +++ /dev/null @@ -1,8 +0,0 @@ - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/Layout.tpl b/tests/FunctionalTests/protected/pages/Layout.tpl deleted file mode 100644 index d58acd5d..00000000 --- a/tests/FunctionalTests/protected/pages/Layout.tpl +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/TicketTestPage.php b/tests/FunctionalTests/protected/pages/TicketTestPage.php deleted file mode 100644 index f647f56b..00000000 --- a/tests/FunctionalTests/protected/pages/TicketTestPage.php +++ /dev/null @@ -1,14 +0,0 @@ -getPage())); - $this->getPage()->setTitle("Verifying Ticket $num"); - $this->ticketlink->setText("Verifying Ticket $num"); - $this->ticketlink->setNavigateUrl("http://trac.pradosoft.com/ticket/{$num}"); - } -} - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/TicketTestPage.tpl b/tests/FunctionalTests/protected/pages/TicketTestPage.tpl deleted file mode 100644 index bf2f8fab..00000000 --- a/tests/FunctionalTests/protected/pages/TicketTestPage.tpl +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - -

- - -
- -
- - - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/UI/ColorPicker.page b/tests/FunctionalTests/protected/pages/UI/ColorPicker.page deleted file mode 100644 index 3d8c46db..00000000 --- a/tests/FunctionalTests/protected/pages/UI/ColorPicker.page +++ /dev/null @@ -1,40 +0,0 @@ - - -
- - -

asda

-

asda

-

asda

- -

asda

-

asda

- -
- - -

asda

-

asda

-

asda

- -
- -

asda

- -
- -

asda

-

asda

- -

asda

-

asda

-

asda

-

asda

-

asda

-

asda

-

asda

-

asda

-

asda

- - -
\ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/UI/DatePicker.page b/tests/FunctionalTests/protected/pages/UI/DatePicker.page deleted file mode 100644 index 4347f748..00000000 --- a/tests/FunctionalTests/protected/pages/UI/DatePicker.page +++ /dev/null @@ -1,59 +0,0 @@ - - -

TDatePicker Samples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Default TDatePicker - -
Button Mode - -
InputMode="DropDownList", custom DateFormat - -
InputMode="DropDownList", custom DateFormat, Culture - -
Custom DateFormat, culture, ImageButton mode - -
Custom DateFormat, DropDownList, pre-selected date set in as Text - -
DropDownList, pre-selected date as integer - /> -
- -
\ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/UI/RatingList.page b/tests/FunctionalTests/protected/pages/UI/RatingList.page deleted file mode 100644 index 909180c7..00000000 --- a/tests/FunctionalTests/protected/pages/UI/RatingList.page +++ /dev/null @@ -1,41 +0,0 @@ - -

TRatingList Examples

- -

Default TRatingList

- - - - - - - -

TRatingList

- - - - - - - - - -

TRatingList

- - - - - - - - - -

TRatingList

- - - - - - - - -
\ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/UI/testHtmlArea.page b/tests/FunctionalTests/protected/pages/UI/testHtmlArea.page deleted file mode 100644 index 5e9665dd..00000000 --- a/tests/FunctionalTests/protected/pages/UI/testHtmlArea.page +++ /dev/null @@ -1,10 +0,0 @@ -<%@ Application.Globalization.Charset="GB2312" %> - - - - - plugins : "contextmenu,paste", - language: "zh_CN" - - - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/ViewSource.page b/tests/FunctionalTests/protected/pages/ViewSource.page deleted file mode 100644 index 218cc901..00000000 --- a/tests/FunctionalTests/protected/pages/ViewSource.page +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - -
- - -Show Line Numbers -
-
- - - - -
- - \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/ViewSource.php b/tests/FunctionalTests/protected/pages/ViewSource.php deleted file mode 100644 index 84f39161..00000000 --- a/tests/FunctionalTests/protected/pages/ViewSource.php +++ /dev/null @@ -1,85 +0,0 @@ -Request->Items['path']; - $fullPath=realpath($this->Service->BasePath.'/'.$path); - $fileExt=$this->getFileExtension($fullPath); - if($fullPath!==false && is_file($fullPath) && strpos($fullPath,$this->Service->BasePath)!==false) - { - if($this->isFileTypeAllowed($fileExt)) - { - $this->_fullPath=strtr($fullPath,'\\','/'); - $this->_path=strtr(substr($fullPath,strlen($this->Service->BasePath)),'\\','/'); - } - } - if($this->_fullPath===null) - throw new THttpException(500,'File Not Found: %s',$path); - $basePath=dirname($this->_fullPath); - if($dh=opendir($basePath)) - { - $str="

{$this->_path}

\n"; - while(($file=readdir($dh))!==false) - { - if(is_file($basePath.'/'.$file)) - { - $fileType=$this->getFileExtension($basePath.'/'.$file); - if($this->isFileTypeAllowed($fileType)) - { - if($fileType==='tpl' || $fileType==='page') - $type='Template file'; - else - $type='Class file'; - $path='/'.ltrim(strtr(dirname($this->_path),'\\','/').'/'.$file,'/'); - $str.="$type: $file
"; - } - } - - } - closedir($dh); - $this->SourceList->Text=$str; - } - - switch($fileExt) - { - case 'page' : - case 'tpl' : - $this->Highlighter->Language='prado'; - break; - case 'php' : - $this->Highlighter->Language='php'; - break; - case 'xml' : - $this->Highlighter->Language='xml'; - break; - default : - $this->Highlighter->Language='html'; - break; - } - - $this->SourceView->Text=file_get_contents($this->_fullPath); - $this->dataBind(); - } -} - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/protected/pages/config.xml b/tests/FunctionalTests/protected/pages/config.xml deleted file mode 100644 index b7007323..00000000 --- a/tests/FunctionalTests/protected/pages/config.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/tests/FunctionalTests/tickets/application.xml b/tests/FunctionalTests/tickets/application.xml deleted file mode 100644 index e973d37d..00000000 --- a/tests/FunctionalTests/tickets/application.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file -- cgit v1.2.3