Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mocking json_decode #12

Open
markmontes17 opened this issue Apr 29, 2022 · 0 comments
Open

Mocking json_decode #12

markmontes17 opened this issue Apr 29, 2022 · 0 comments

Comments

@markmontes17
Copy link

markmontes17 commented Apr 29, 2022

Is it possible to use the mocked json_decode for unit testing SomeClass::someMethod?
Where in someMethod() contains json_decode?

Summarized code snippet:

test Method:
PHPMockery::mock(NAMESPACE, "json_decode")
->andReturn("test");

$classMock = new SomeClass();
$actual = $classMock->someMethod();
$this->assertEquals("test", $actual);

SomeClass::someMethod:
// codes here
$var = json_decode($str);
// codes here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant