Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / README.markdown
1 # Running the Doctrine 2 Testsuite
2
3 ## Running tests
4
5 Execute PHPUnit in the root folder of your doctrine-common clone.
6
7     phpunit
8
9 ## Testing Lock-Support
10
11 The Lock support in Doctrine 2 is tested using Gearman, which allows to run concurrent tasks in parallel.
12 Install Gearman with PHP as follows:
13
14 1. Go to http://www.gearman.org and download the latest Gearman Server
15 2. Compile it and then call ldconfig
16 3. Start it up "gearmand -vvvv"
17 4. Install pecl/gearman by calling "gearman-beta"
18
19 You can then go into tests/ and start up two workers:
20
21     php Doctrine/Tests/ORM/Functional/Locking/LockAgentWorker.php
22
23 Then run the locking test-suite:
24
25     phpunit --configuration <myconfig.xml> Doctrine/Tests/ORM/Functional/Locking/GearmanLockTest.php
26
27 This can run considerable time, because it is using sleep() to test for the timing ranges of locks.