Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
71adca60
Commit
71adca60
authored
Aug 03, 2014
by
Anton Andersen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add namespaces to all tests
parent
545a908b
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
16 additions
and
0 deletions
+16
-0
codeception.yml
apps/advanced/backend/codeception.yml
+1
-0
LoginCept.php
apps/advanced/backend/tests/acceptance/LoginCept.php
+1
-0
LoginCept.php
apps/advanced/backend/tests/functional/LoginCept.php
+1
-0
codeception.yml
apps/advanced/common/codeception.yml
+1
-0
codeception.yml
apps/advanced/console/codeception.yml
+1
-0
codeception.yml
apps/advanced/frontend/codeception.yml
+1
-0
AboutCept.php
apps/advanced/frontend/tests/acceptance/AboutCept.php
+1
-0
ContactCept.php
apps/advanced/frontend/tests/acceptance/ContactCept.php
+1
-0
HomeCept.php
apps/advanced/frontend/tests/acceptance/HomeCept.php
+2
-0
LoginCept.php
apps/advanced/frontend/tests/acceptance/LoginCept.php
+1
-0
AboutCept.php
apps/advanced/frontend/tests/functional/AboutCept.php
+1
-0
ContactCept.php
apps/advanced/frontend/tests/functional/ContactCept.php
+1
-0
HomeCept.php
apps/advanced/frontend/tests/functional/HomeCept.php
+2
-0
LoginCept.php
apps/advanced/frontend/tests/functional/LoginCept.php
+1
-0
No files found.
apps/advanced/backend/codeception.yml
View file @
71adca60
namespace
:
backend
actor
:
Tester
paths
:
tests
:
tests
...
...
apps/advanced/backend/tests/acceptance/LoginCept.php
View file @
71adca60
<?php
use
common\tests\_pages\LoginPage
;
use
backend\WebGuy
;
$I
=
new
WebGuy
(
$scenario
);
$I
->
wantTo
(
'ensure login page works'
);
...
...
apps/advanced/backend/tests/functional/LoginCept.php
View file @
71adca60
<?php
use
common\tests\_pages\LoginPage
;
use
backend\TestGuy
;
$I
=
new
TestGuy
(
$scenario
);
$I
->
wantTo
(
'ensure login page works'
);
...
...
apps/advanced/common/codeception.yml
View file @
71adca60
namespace
:
common
actor
:
Tester
paths
:
tests
:
tests
...
...
apps/advanced/console/codeception.yml
View file @
71adca60
namespace
:
console
actor
:
Tester
paths
:
tests
:
tests
...
...
apps/advanced/frontend/codeception.yml
View file @
71adca60
namespace
:
frontend
actor
:
Tester
paths
:
tests
:
tests
...
...
apps/advanced/frontend/tests/acceptance/AboutCept.php
View file @
71adca60
<?php
use
frontend\tests\_pages\AboutPage
;
use
frontend\WebGuy
;
$I
=
new
WebGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that about works'
);
...
...
apps/advanced/frontend/tests/acceptance/ContactCept.php
View file @
71adca60
<?php
use
frontend\tests\_pages\ContactPage
;
use
frontend\WebGuy
;
$I
=
new
WebGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that contact works'
);
...
...
apps/advanced/frontend/tests/acceptance/HomeCept.php
View file @
71adca60
<?php
use
frontend\WebGuy
;
$I
=
new
WebGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that home page works'
);
$I
->
amOnPage
(
Yii
::
$app
->
homeUrl
);
...
...
apps/advanced/frontend/tests/acceptance/LoginCept.php
View file @
71adca60
<?php
use
common\tests\_pages\LoginPage
;
use
frontend\WebGuy
;
$I
=
new
WebGuy
(
$scenario
);
$I
->
wantTo
(
'ensure login page works'
);
...
...
apps/advanced/frontend/tests/functional/AboutCept.php
View file @
71adca60
<?php
use
frontend\tests\_pages\AboutPage
;
use
frontend\TestGuy
;
$I
=
new
TestGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that about works'
);
...
...
apps/advanced/frontend/tests/functional/ContactCept.php
View file @
71adca60
<?php
use
frontend\tests\_pages\ContactPage
;
use
frontend\TestGuy
;
$I
=
new
TestGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that contact works'
);
...
...
apps/advanced/frontend/tests/functional/HomeCept.php
View file @
71adca60
<?php
use
frontend\TestGuy
;
$I
=
new
TestGuy
(
$scenario
);
$I
->
wantTo
(
'ensure that home page works'
);
$I
->
amOnPage
(
Yii
::
$app
->
homeUrl
);
...
...
apps/advanced/frontend/tests/functional/LoginCept.php
View file @
71adca60
<?php
use
common\tests\_pages\LoginPage
;
use
frontend\TestGuy
;
$I
=
new
TestGuy
(
$scenario
);
$I
->
wantTo
(
'ensure login page works'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment