Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/internations/testingcomponent
A collection of test helpers for Symfony 2 projects
https://github.com/internations/testingcomponent
Last synced: 9 days ago
JSON representation
A collection of test helpers for Symfony 2 projects
- Host: GitHub
- URL: https://github.com/internations/testingcomponent
- Owner: InterNations
- Created: 2013-03-09T00:50:04.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-03-09T12:04:15.000Z (over 2 years ago)
- Last Synced: 2024-03-26T09:27:21.434Z (8 months ago)
- Language: PHP
- Homepage: http://www.internations.org
- Size: 57.6 KB
- Stars: 4
- Watchers: 33
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test helpers for Symfony projects
[![Build Status](https://travis-ci.org/InterNations/TestingComponent.svg)](https://travis-ci.org/InterNations/TestingComponent)
A collection of test helpers to ease testing of Symfony3 projects.
### The base test class
```php
setNonPublicProperty($this->sut, 'privateProperty', 'value');
$this->callNonPublicMethod($this->sut, 'protectedMethod', ['arg1', 'arg2']);
}
}```