Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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']);
}
}

```