Guilherme Blanco
|
843966ac50
|
General fixes across CS, type resolving, test fixes, etc
|
2015-11-07 03:55:05 +00:00 |
|
Guilherme Blanco
|
1587aac4ff
|
Added support for OneToMany with orphanRemoval. Replacing entire collection now deletes the replaced collection (scheduled for deletion). No event handling is done as it happens at DBAL level.
|
2015-11-05 00:08:44 -05:00 |
|
Pantel
|
43b2419a3c
|
[DDC-3711] add Test that check if the association key are composite
|
2015-10-31 17:19:39 +01:00 |
|
Marco Pivetta
|
a0a0c731bb
|
Merge pull request #1457 from phansys/short_types
Updated syntax for "integer" and "boolean" types
|
2015-09-05 17:21:05 +02:00 |
|
Issei.M
|
df461601f7
|
removed useless line breaks
|
2015-09-03 17:55:14 +09:00 |
|
Marco Pivetta
|
eb5d87cd94
|
DDC-3699 - #1387 - leveraging the OrmFunctionalTestCase API
|
2015-07-15 21:51:04 +01:00 |
|
Marco Pivetta
|
12183b7e6c
|
DDC-3699 - #1387 - catching specific exceptions
|
2015-07-15 21:47:37 +01:00 |
|
Marco Pivetta
|
74883e535f
|
DDC-3699 - #1387 - simpifying tests, clarifying on test method names
|
2015-07-15 21:46:23 +01:00 |
|
Lenard Palko
|
cbfd71cec6
|
Added test cases for both one-to-one and one-to-many cases.
|
2015-07-15 21:26:45 +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 |
|
David Adams
|
6fa20062f3
|
allow ManyToManyPersister to handle identification types
|
2015-06-23 17:55:56 +00:00 |
|
Thomas Lallement
|
f41e59258c
|
Failing Test - Paginator with sorted collection
|
2015-06-16 16:34:37 -04:00 |
|
Christian Schmidt
|
96dbecec24
|
[DDC-3382] Allow orphan removal to be cancelled
|
2015-06-12 16:44:13 +02:00 |
|
Matteo Beccati
|
e7397ff62e
|
Fix DDC767Test failing on php7 + pg94
The failure happens when running the full suite or even just:
phpunit tests/Doctrine/Tests/ORM/Functional/Ticket
|
2015-04-05 21:50:25 +02:00 |
|
Marco Pivetta
|
cf1ecffb14
|
Merge pull request #1339 from BenMorel/dqlcustomtype
[DDC-2224] Honor convertToDatabaseValueSQL() in DQL query parameters
|
2015-03-25 01:27:05 +00:00 |
|
Marco Pivetta
|
06998d015f
|
Skipping DDC-3634 tests when a post-insert generator is unavailable
|
2015-03-24 00:20:03 +00:00 |
|
Marco Pivetta
|
4c119c44a1
|
Completed test coverage for DDC-3634
|
2015-03-23 23:37:36 +00:00 |
|
Marco Pivetta
|
cbdf23ca65
|
Verifies that identifiers are kept as strings when dealing with large numbers
|
2015-03-23 23:29:22 +00:00 |
|
Marco Pivetta
|
3b0fb6b4b8
|
Merge pull request #1274 from doctrine/persistent-collection-as-lazy-collection
PersistentCollection now extends AbstractLazyCollection.
|
2015-03-17 23:32:17 +00:00 |
|
Benjamin Morel
|
517cb7e2a2
|
Honor convertToDatabaseValueSQL() in DQL query parameters
|
2015-03-18 00:24:41 +01:00 |
|
Volker von Hoesslin
|
0824c6136d
|
unittest DDC3597: fix for PHP 5.4
|
2015-03-04 11:55:08 +01:00 |
|
Volker von Hoesslin
|
2aef87c9b2
|
add unittest for DDC3597
|
2015-03-03 16:59:48 +01:00 |
|
Guilherme Blanco
|
19f18fa069
|
PersistentCollection now extends AbstractLazyCollection.
|
2015-03-01 00:30:21 -05:00 |
|
Jan Kramer
|
c059de9e60
|
Implement test to show nested embeddables are not instantiated properly
|
2015-02-27 15:09:22 +01:00 |
|
Marco Pivetta
|
dff365318d
|
#1277 DDC-3346 DDC-3531 - enforcing 0 offset to avoid persisting more than 1 row
|
2015-01-24 14:39:47 +01:00 |
|
Marco Pivetta
|
186c593058
|
#1277 DDC-3346 DDC-3531 - proper bi-directional association setup
|
2015-01-24 14:39:46 +01:00 |
|
Marco Pivetta
|
39a8941d1b
|
#1277 DDC-3346 DDC-3531 - minor CS fixes/cleanups: avoiding setters
|
2015-01-24 14:39:46 +01:00 |
|
Marco Pivetta
|
36bc448880
|
#1277 DDC-3346 DDC-3531 - refactoring test code for simplicity/readability
|
2015-01-24 14:39:46 +01:00 |
|
Marco Pivetta
|
16f447d1ac
|
#1277 DDC-3346 DDC-3531 - correct usage of the model set (setUp/tearDown of model-related tables)
|
2015-01-24 14:39:46 +01:00 |
|
Marco Pivetta
|
6e3ad496e2
|
#1277 DDC-3346 DDC-3531 - constants over string references
|
2015-01-24 14:39:45 +01:00 |
|
Marco Pivetta
|
157bf203bc
|
#1277 DDC-3346 DDC-3531 - additional tests for LIMIT and OFFSET repository API (must not hydrate collections)
|
2015-01-24 14:39:45 +01:00 |
|
Pavel Batanov
|
981cebbf4c
|
Update test according to @Ocramius notes
|
2015-01-24 14:39:43 +01:00 |
|
Pavel Batanov
|
e36c7b0c2a
|
DDC-3346 failing test example
|
2015-01-24 14:39:42 +01:00 |
|
Marco Pivetta
|
6547d5462e
|
#1257 DDC-3300 - strengthening test case (missing assertion, test name)
|
2015-01-22 09:51:43 +01:00 |
|
Marco Pivetta
|
c1cc768aee
|
#1257 DDC-3300 - correcting further incomplete discriminator maps in the test suite
|
2015-01-22 09:50:59 +01:00 |
|
Marco Pivetta
|
635d2c141f
|
#1130 DDC-3300 - minor CS fix (EOF EOL)
|
2015-01-22 09:44:39 +01:00 |
|
Marco Pivetta
|
fbe294927f
|
#1130 DDC-3300 - cleaning up test code
|
2015-01-22 09:44:39 +01:00 |
|
Marco Pivetta
|
b7c28924b1
|
#1130 DDC-3300 - fixed inheritance maps where inheritance members were missing
|
2015-01-22 09:44:39 +01:00 |
|
mmoreram
|
5a1a32297b
|
Tested DDC-3300
|
2015-01-22 09:44:38 +01:00 |
|
Marco Pivetta
|
40849f8ae1
|
#1086 - Minor CS fixes applied to the test case (simplifying)
|
2015-01-17 08:09:55 +01:00 |
|
Thomas Lallement
|
a0165858c4
|
Delete DDC0003Test.php
|
2015-01-17 08:09:55 +01:00 |
|
Thomas Lallement
|
033b8e51e9
|
Create DDC3223Test.php
|
2015-01-17 08:09:55 +01:00 |
|
Thomas Lallement
|
556c562258
|
Failing test (get id return string type)
|
2015-01-17 08:09:54 +01:00 |
|
Marco Pivetta
|
f799986be1
|
Reverting BC break in AbstractIdGenerator signature
|
2015-01-16 18:52:58 +01:00 |
|
Marco Pivetta
|
dd8db1acd2
|
DDC-3427 - s/EntityManager/EntityManagerInterface in relevant tests about identifier generation
|
2015-01-16 14:22:03 +01:00 |
|
Guilherme Blanco
|
a1d77bdc65
|
Renamed coll to collection and some small updates to tests.
|
2015-01-15 03:14:48 +00:00 |
|
Marco Pivetta
|
0106cba602
|
#881 DDC-2825 - reusing mapping files that already exist in models, where applicable
|
2015-01-14 19:17:39 +01:00 |
|
Marco Pivetta
|
7b168de236
|
#881 DDC-2825 - removing unused imports
|
2015-01-14 19:05:40 +01:00 |
|
Marco Pivetta
|
962f479318
|
#881 DDC-2825 - refactoring test logic, removing dead private method
|
2015-01-14 19:04:58 +01:00 |
|
Marco Pivetta
|
80ce601eae
|
#881 DDC-2825 - refactoring test logic to use data-provider instead of code repetitions
|
2015-01-14 19:02:44 +01:00 |
|