Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
Foundation for XHP
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
91 Carriage
Foundation for XHP
Commits
9709df1c
Unverified
Commit
9709df1c
authored
Mar 08, 2015
by
Simon Welsh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some more methods to phpunit hhi
parent
9efdf542
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
tests/definitions.hhi
tests/definitions.hhi
+6
-0
No files found.
tests/definitions.hhi
View file @
9709df1c
...
...
@@ -2,10 +2,16 @@
namespace
{
class
PHPUnit_Framework_TestCase
{
public
function
assertSame
(
mixed
$expect
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertNotSame
(
mixed
$expect
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertEquals
(
mixed
$expect
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertNotEquals
(
mixed
$expect
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertContains
(
mixed
$key
,
array
$array
,
?
string
$msg
=
null
);
public
function
assertNotContains
(
mixed
$key
,
array
$array
,
?
string
$msg
=
null
);
public
function
assertInstanceOf
(
string
$expected
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertNotInstanceOf
(
string
$expected
,
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertNull
(
mixed
$actual
,
?
string
$msg
=
null
);
public
function
assertNotNull
(
mixed
$actual
,
?
string
$msg
=
null
);
public
function
fail
(
string
$msg
);
}
}
...
...
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