mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
- Renamed classes, methods and properties names in german
- All the controllers exends APIv1_Controller rather than REST_Controller - Codeceptions modified to be compliant to changes
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
$I = new AcceptanceTester($scenario);
|
||||
$I->wantTo('test the Startpage of VileSci');
|
||||
|
||||
$I->wantTo('test this over vilesci/index.php');
|
||||
$I->amOnPage('/vilesci/index.php');
|
||||
$I->See('This application works only with');
|
||||
$I->seeElement('#frameset-vilesci');
|
||||
|
||||
$I->wantTo('and now over index.ci.php');
|
||||
$I->amOnPage('/index.ci.php');
|
||||
$I->See('This application works only with');
|
||||
$I->seeElement('#frameset-vilesci');
|
||||
|
||||
$I->wantTo('test the top menu');
|
||||
$I->amOnPage('/vilesci/top.php');
|
||||
$I->seeElement('.logo');
|
||||
|
||||
$I->wantTo('test the left nav-frame');
|
||||
$I->amOnPage('/vilesci/left.php');
|
||||
$I->seeElement('.left_nav');
|
||||
|
||||
$I->wantTo('test the main-frame');
|
||||
$I->amOnPage('/vilesci/main.php');
|
||||
$I->seeElement('img');
|
||||
?>
|
||||
Reference in New Issue
Block a user