Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
Silex
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
Silex
Commits
c5aaea4f
Commit
c5aaea4f
authored
Apr 16, 2011
by
Igor Wiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename WebTestCase::{createApp => createApplication}
parent
a9d1698e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/Silex/WebTestCase.php
src/Silex/WebTestCase.php
+3
-3
tests/Silex/Tests/WebTestCaseTest.php
tests/Silex/Tests/WebTestCaseTest.php
+1
-1
No files found.
src/Silex/WebTestCase.php
View file @
c5aaea4f
...
...
@@ -31,15 +31,15 @@ abstract class WebTestCase extends BaseWebTestCase
*/
public
function
setUp
()
{
$this
->
app
=
$this
->
createApp
();
$this
->
app
=
$this
->
createApp
lication
();
}
/**
* Creates the application
(HttpKernel, most likely Framework)
.
* Creates the application.
*
* @return Symfony\Component\HttpKernel\HttpKernel
*/
abstract
public
function
createApp
();
abstract
public
function
createApp
lication
();
/**
* Creates a Client.
...
...
tests/Silex/Tests/WebTestCaseTest.php
View file @
c5aaea4f
...
...
@@ -21,7 +21,7 @@ use Silex\WebTestCase;
*/
class
WebTestCaseTest
extends
WebTestCase
{
public
function
createApp
()
public
function
createApp
lication
()
{
$app
=
new
Application
();
...
...
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