Directory Tests/Unit/Object/

Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
9
Lines of Code:
0

[root]/Tests/Unit/Object
                Folder removed from repo Configuration (0 files, 0 lines)
                Folder removed from repo Container (0 files, 0 lines)
                Folder removed from repo Fixture (0 files, 0 lines)

Lines of Code

Tests/Unit/Object/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 35 (100.0%) 3095 (100.0%) 88.4
robert 17 (48.6%) 3012 (97.3%) 177.1
k-fish 17 (48.6%) 66 (2.1%) 3.8
andi 1 (2.9%) 17 (0.5%) 17.0

Most Recent Commits

k-fish 2010-08-24 10:42 Rev.: 5057

Removed everything in trunk after move to git.

0 lines of code changed in 9 files:

  • Tests/Unit/Object: BuilderTest.php (del), FactoryTest.php (del), ManagerTest.php (del), ObjectBuilderTest.php (del), ObjectFactoryTest.php (del), ObjectManagerTest.php (del), ObjectSerializerTest.php (del), SessionRegistryTest.php (del), TransientRegistryTest.php (del)
robert 2010-08-19 08:55 Rev.: 5009

[+BUGFIX] FLOW3 (Object): The ObjectSerializer now detects recursive reference in the object structure to be serialized. This should now allow to add even complex object structures to a session object which is then transparently stored by FLOW3. Resolves #9360

217 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectSerializerTest.php (+217 -164)
k-fish 2010-08-13 16:21 Rev.: 4969

[-TASK] FLOW3: Removed @version keyword from files, resolves #8835.

0 lines of code changed in 2 files:

  • Tests/Unit/Object: ObjectManagerTest.php (-1), ObjectSerializerTest.php (-1)
andi 2010-06-23 13:31 Rev.: 4613

* [+TASK] FLOW3 (Object): Added session scope related methods to the object manager and interface.
* [+FEATURE] FLOW3 (AOP): Added a matches operator as a new possibility for runtime evaluations.
* [+FEATURE] FLOW3 (AOP): Global objects available in runtime evaluations can now be configured in the settings. Resolves #6598.
* [+FEATURE] FLOW3 (Security): Implemented query rewriting according to the security policy. Relates to #5659, Resolves #6604.

17 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+17)
robert 2010-05-28 13:13 Rev.: 4337

[+FEATURE][+API] FLOW3 (Object): The Object Manager (and the object containers) now provide a method for retrieving the implementation class name by specifying the object name. Resolves #7960
[~TASK] FLOW3 (MVC): The Request object now returns the case sensitive action name, even if it has been set all lowercase by a route. That means that a route http://host/package/mycontroller/myaction will be correctly resolved to myActionAction if \F3\Package\Controller\MyController::myActionAction exists. Addresses #7243

14 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+14)
k-fish 2010-04-08 17:02 Rev.: 4040

[+TASK] FLOW3 Distribution: Added Phing build file.
[~TASK] FLOW3 (MVC): Removed some leftover @package annotations.
[~TASK] FLOW3 (Object): Removed a leftover @package annotation.
[~TASK] Fluid: Fixed some param annotations.

0 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectSerializerTest.php (-1)
k-fish 2010-03-23 15:10 Rev.: 4003

[~TASK] FLOW3: Fixing two failing tests - wondering how that ever worked.

2 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+2)
k-fish 2010-03-18 12:13 Rev.: 3991

[~TASK] FLOW3 (MVC): Fixed doc comment in RequestHandlerInterface, getPriority() is not expected to throw LogicException.
[+BUGFIX] FLOW3 (Object): The ObjectSerializer now uses a unique hash for all objects, fixes #6902.

52 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectSerializerTest.php (+52 -44)
robert 2010-03-17 14:15 Rev.: 3976

Fixed the ObjectSerializer test which didn't match the Object Serializer from my last commit.

3 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectSerializerTest.php (+3 -2)
robert 2010-03-15 16:34 Rev.: 3946

[+BUGFIX] FLOW3 (Object): The static object container is now rebuilt automatically if the FLOW3 revision changed. Fixes #6846

10 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+10 -7)
robert 2010-02-24 17:21 Rev.: 3854

[~TASK] FLOW3 (Object): Fixed a few tests in the Object Manager test case. They failed when run without the FLOW3 test runner.

30 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+30 -22)
robert 2010-02-24 11:01 Rev.: 3850

[~TASK] FLOW3 (Object): Test case with full coverage of the new Object Manager code.

500 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectManagerTest.php (+500)
robert 2010-02-22 16:17 Rev.: 3837

[+FEATURE] FLOW3 (Object): Implemented a static object container which is automatically built. It's essentially a hardcoded version of the autowired and configured object dependencies - just a lot faster. Many tests are still missing, but the version in this commit should be mostly functional. Addresses #3740 and resolves #2123.
[!!!][~API] FLOW3 (Object): Heavily refactored the Object Manager and its tests. The most important change is the removal of the Object Factory whose create() method is now located in the Object Manager. Furthermore, the getObject() method has been renamed to get() and a few minor important API functions within the Object Manager have been modified. This commit also contains a script which allows for semi automatically migrating existing code to the new API (see ./flow3 migrate objectmanagerusage). Resolves #6562
[~TASK] FLOW3 (Configuration): The Configuration Manager and its YAML source now doesn't depend on the YAML package anymore but refers to a YAML parser class within the FLOW3 package. Resolves #6564.

35 lines of code changed in 3 files:

  • Tests/Unit/Object: ObjectManagerTest.php (-1141), ObjectSerializerTest.php (+26 -132), SessionRegistryTest.php (+9 -9)
k-fish 2010-02-18 23:32 Rev.: 3830

[~TASK] FLOW3 (Persistence): Completely rewrote dirty checking, achieves massive speedup; isNew() and isDirty() are no longer AOP'ed into objects but reside in the PersistenceManager now.
[+API] FLOW3 (Persistence): getObjectDataByQuery(), getObjectCountByQuery() now in PersistenceManagerInterface.
[~API] FLOW3 (Persistence): replaceObject() moved from BackendInterface to PersistenceManagerInterface.
[-API] FLOW3 (Persistence): removed getBackend() from PersistenceManager, no longer needed as API methods from backend moved to PersistenceManager.
[~TASK] FLOW3 (Persistence): Renamed DirtyMonitoringInterface to PersistenceMagicAspect.

2 lines of code changed in 1 file:

  • Tests/Unit/Object: ObjectSerializerTest.php (+2 -2)
robert 2010-01-15 15:38 Rev.: 3643

[~TASK] FLOW3 (Documentation): Updated the Coding Guidelines: removed inconsistent exceptions from the general class naming rules. Also added the rule that names of aspect classes must end with "Aspect". Relates to #5658
[~TASK] Global: Renamed many classes and interfaces in order to be consistent with FLOW3's naming rules. A migration script to update third-party applications will follow soon. Resolves #5658

2198 lines of code changed in 6 files:

  • Tests/Unit/Object: ObjectBuilderTest.php (new 820), ObjectFactoryTest.php (new 154), ObjectManagerTest.php (new 1196), ObjectSerializerTest.php (+24 -24), SessionRegistryTest.php (+4 -4)
k-fish 2010-01-13 17:30 Rev.: 3616

[+FEATURE] FLOW3 (Persistence): Wrote a new persistence backend using a database directly instead of TYPO3CR. Details see below. Resolves #6006.
[+API] FLOW3 (Persistence): Added new backend classes that can be used for further backends.
[-API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() from BackendInterface.
[+API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() to ManagerInterface and Manager.
[-API] FLOW3 (Persistence): Removed withUUID() from QueryInterface, use getObjectByIdentifier() on Manager instead.
[+API] FLOW3 (Persistence): Added constants for query operators to QueryInterface.

10 lines of code changed in 2 files:

  • Tests/Unit/Object: ObjectSerializerTest.php (new)
robert 2009-11-30 17:48 Rev.: 3526

[-API] FLOW3 (Configuration): Removed the Configuration Manager's getSettings() method! If you relied on this method please use getConfiguration() instead, but be aware that this is not an official API method. The recommended way to retrieve settings are injectSettings() methods (see manual for more information). Relates to #5577
[~TASK] FLOW3 (Configuration): Cleaned up and refactored the Configuration Manager's loadConfiguration() method. Resolves #5577
[BUGFIX] FLOW3 (Configuration): Fixed build of the caches configuration array. Resolves #5576.

5 lines of code changed in 2 files:

  • Tests/Unit/Object: BuilderTest.php (+5 -5)
Generated by StatSVN 0.5.0