FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpunit-wrapper/src/FilterTest.php at 9.0 · Codeception/phpunit-wrapper · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Mar 12, 2025. It is now read-only.
Codeception
/
phpunit-wrapper
Public archive
Notifications
You must be signed in to change notification settings
Fork
30
Star
239
Code
Issues
2
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
phpunit-wrapper
/
src
/
FilterTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (37 loc) · 1.31 KB
Breadcrumbs
phpunit-wrapper
/
src
/
FilterTest.php
Copy path
File metadata and controls
45 lines (37 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
namespace
Codeception
\
PHPUnit
;
use
Codeception
\
PHPUnit
\
NonFinal
\
NameFilterIterator
;
use
Codeception
\
Test
\
Descriptor
;
/**
* Extended Filter Test from PHPUnit to use Codeception's Descriptor to locate tests.
*
* Class FilterTest
* @package Codeception\PHPUnit
*/
class
FilterTest
extends
NameFilterIterator
{
public
function
accept
():
bool
{
$
test
=
$
this
->
getInnerIterator
()->
current
();
if
(
$
test
instanceof
\
PHPUnit
\
Framework
\TestSuite) {
return
true
;
}
$
name
= Descriptor::
getTestSignature
(
$
test
);
$
index
= Descriptor::
getTestDataSetIndex
(
$
test
);
if
(!
is_null
(
$
index
)) {
$
name
.=
"
with data set #
{
$
index
}"
;
}
$
accepted
=
preg_match
(
$
this
->
filter
,
$
name
,
$
matches
);
// This fix the issue when an invalid dataprovider method generate a warning
// See issue https://github.com/Codeception/Codeception/issues/4888
if
(
$
test
instanceof
\
PHPUnit
\
Framework
\WarningTestCase) {
$
message
=
$
test
->
getMessage
();
$
accepted
=
preg_match
(
$
this
->
filter
,
$
message
,
$
matches
);
}
if
(
$
accepted
&&
isset
(
$
this
->
filterMax
)) {
$
set
=
end
(
$
matches
);
$
accepted
=
$
set
>=
$
this
->
filterMin
&&
$
set
<=
$
this
->
filterMax
;
}
return
$
accepted
;
}
}
Back
|
FazBrowse Home
|
New Git URL