Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Tomáš Trávníček
doctrine-dbal
Commits
f9e00b6b
Unverified
Commit
f9e00b6b
authored
Jun 16, 2019
by
Sergei Morozov
Committed by
GitHub
Jun 16, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3608 from morozov/logger-chain-test
Added a unit test for Doctrine\DBAL\Logging\LoggerChain
parents
070684af
80cccaa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
LoggerChainTest.php
tests/Doctrine/Tests/DBAL/Logging/LoggerChainTest.php
+56
-0
No files found.
tests/Doctrine/Tests/DBAL/Logging/LoggerChainTest.php
0 → 100644
View file @
f9e00b6b
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\Tests\DBAL\Logging
;
use
Doctrine\DBAL\Logging\LoggerChain
;
use
Doctrine\DBAL\Logging\SQLLogger
;
use
Doctrine\DBAL\ParameterType
;
use
PHPUnit\Framework\TestCase
;
class
LoggerChainTest
extends
TestCase
{
public
function
testStartQuery
()
:
void
{
$sql
=
'SELECT ?'
;
$params
=
[
1
];
$types
=
[
ParameterType
::
INTEGER
];
$listener
=
$this
->
createChain
(
'startQuery'
,
$sql
,
$params
,
$types
);
$listener
->
startQuery
(
$sql
,
$params
,
$types
);
}
public
function
testStopQuery
()
:
void
{
$listener
=
$this
->
createChain
(
'stopQuery'
);
$listener
->
stopQuery
();
}
/**
* @param mixed ...$args
*/
private
function
createChain
(
string
$method
,
...
$args
)
:
LoggerChain
{
$chain
=
new
LoggerChain
([
$this
->
createLogger
(
$method
,
...
$args
),
]);
$chain
->
addLogger
(
$this
->
createLogger
(
$method
,
...
$args
));
return
$chain
;
}
/**
* @param mixed ...$args
*/
private
function
createLogger
(
string
$method
,
...
$args
)
:
SQLLogger
{
$logger
=
$this
->
createMock
(
SQLLogger
::
class
);
$logger
->
expects
(
$this
->
once
())
->
method
(
$method
)
->
with
(
...
$args
);
return
$logger
;
}
}
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