webservice tests pass

This commit is contained in:
Guillermo Dev
2018-10-13 18:37:30 +02:00
parent 1211af09cc
commit 9c928cfa54
6 changed files with 157 additions and 24 deletions

View File

@@ -7,4 +7,13 @@ class MockWebserviceSubclass extends Webservice
{
return 'Some Mock Function Return';
}
public function someOtherMockFunction($one, $two, $threeOpt = null)
{
return array(
'one' => $one,
'two' => $two,
'threeOpt' => $threeOpt
);
}
}