We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 19 | class ResolverTest extends \PHPUnit_Framework_TestCase |
||
| 20 | { |
||
| 21 | private $privatePropertyWithoutGetter = 'ImNotAccessibleFromOutside:D'; |
||
| 22 | |||
| 23 | private $privatePropertyWithGetter = 'IfYouWantMeUseMyGetter'; |
||
| 24 | |||
| 25 | private $private_property_with_getter2 = 'IfYouWantMeUseMyGetter2'; |
||
| 26 | |||
| 27 | public $public = 'public'; |
||
| 28 | |||
| 29 | public $closureProperty; |
||
| 30 | |||
| 31 | public function setUp() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param $fieldName |
||
| 40 | * @param $source |
||
| 41 | * @param $expected |
||
| 42 | * |
||
| 43 | * @dataProvider resolverProvider |
||
| 44 | */ |
||
| 45 | public function testDefaultResolveFn($fieldName, $source, $expected) |
||
| 51 | |||
| 52 | public function resolverProvider() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @return string |
||
| 67 | */ |
||
| 68 | public function getPrivatePropertyWithGetter() |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @return string |
||
| 75 | */ |
||
| 76 | public function getPrivatePropertyWithGetter2() |
||
| 80 | } |
||
| 81 |