Luís Cobucci
|
8dccd27b52
|
Add the correct assertions for tests that don't have any
|
2017-06-12 23:05:55 +02:00 |
|
Luís Cobucci
|
043ca69f0b
|
Fix some code style issues in tests
|
2017-06-12 23:04:54 +02:00 |
|
Luís Cobucci
|
fda6fdd9fb
|
Use "::class" syntax on "tests" directory
|
2016-12-08 18:13:39 +01:00 |
|
Luís Cobucci
|
74c8a08828
|
Use short-array syntax on "tests" directory
|
2016-12-07 23:33:41 +01:00 |
|
Javier Spagnoletti
|
97cc49033e
|
Updated syntax for ``integer ` and `boolean `` types
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | MIT
| Doc PR |
Used short syntax for ```integer``` and ```boolean``` types.
**Before**
```php
/**
* @var integer
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var boolean
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
**After**
```php
/**
* @var int
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var bool
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
|
2015-07-14 15:30:13 -03:00 |
|
Giorgio Premi
|
6cb3fa8fb7
|
Removed all useless occurrence of require_once TestInit.php
|
2014-04-07 14:43:25 +02:00 |
|
Marco Pivetta
|
5b3eee8071
|
DDC-1925 - squashing ticket tests into a single file
|
2012-07-20 00:03:39 +02:00 |
|
Marco Pivetta
|
81f97e92d3
|
Adding tests for DDC-1925
|
2012-07-19 22:00:56 +02:00 |
|