This commit is contained in:
Frédéric FRANCE 2021-02-11 21:12:32 +01:00
parent 7f64af9c90
commit 79c3670c20
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
3 changed files with 11 additions and 11 deletions

View File

@ -187,7 +187,7 @@ class SupplierProposalTest extends PHPUnit\Framework\TestCase
/** /**
* testSupplierProposalAddLine * testSupplierProposalAddLine
* *
* @param int $localobject Proposal * @param SupplierProposal $localobject Proposal
* @return void * @return void
* *
* @depends testSupplierProposalFetch * @depends testSupplierProposalFetch

View File

@ -174,7 +174,7 @@ class UserGroupTest extends PHPUnit\Framework\TestCase
/** /**
* testUserGroupUpdate * testUserGroupUpdate
* *
* @param Object $localobject Group * @param UserGroup $localobject Group
* @return void * @return void
* @depends testUserGroupFetch * @depends testUserGroupFetch
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -198,7 +198,7 @@ class UserGroupTest extends PHPUnit\Framework\TestCase
/** /**
* testUserGroupAddRight * testUserGroupAddRight
* *
* @param Object $localobject Object to show * @param UserGroup $localobject Object to show
* @return void * @return void
* @depends testUserGroupUpdate * @depends testUserGroupUpdate
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -221,7 +221,7 @@ class UserGroupTest extends PHPUnit\Framework\TestCase
/** /**
* testUserGroupDelRight * testUserGroupDelRight
* *
* @param Object $localobject Object * @param UserGroup $localobject Object
* @return void * @return void
* @depends testUserGroupAddRight * @depends testUserGroupAddRight
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -244,7 +244,7 @@ class UserGroupTest extends PHPUnit\Framework\TestCase
/** /**
* testUserGroupOther * testUserGroupOther
* *
* @param Object $localobject Object * @param UserGroup $localobject Object
* @return void * @return void
* @depends testUserGroupDelRight * @depends testUserGroupDelRight
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok

View File

@ -179,7 +179,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* testUserUpdate * testUserUpdate
* *
* @param Object $localobject User * @param User $localobject User
* @return void * @return void
* @depends testUserFetch * @depends testUserFetch
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -210,7 +210,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* testUserDisable * testUserDisable
* *
* @param Object $localobject User * @param User $localobject User
* @return void * @return void
* @depends testUserUpdate * @depends testUserUpdate
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -234,7 +234,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* testUserOther * testUserOther
* *
* @param Object $localobject User * @param User $localobject User
* @return void * @return void
* @depends testUserDisable * @depends testUserDisable
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -262,7 +262,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* testUserDelete * testUserDelete
* *
* @param Object $id User * @param int $id User id
* @return void * @return void
* @depends testUserOther * @depends testUserOther
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -287,7 +287,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* testUserAddPermission * testUserAddPermission
* *
* @param Object $id User * @param int $id User id
* @return void * @return void
* @depends testUserDelete * @depends testUserDelete
* The depends says test is run only if previous is ok * The depends says test is run only if previous is ok
@ -314,7 +314,7 @@ class UserTest extends PHPUnit\Framework\TestCase
/** /**
* Edit an object to test updates * Edit an object to test updates
* *
* @param mixed $localobject Object User * @param Object $localobject Object User
* @return void * @return void
*/ */
public function changeProperties(&$localobject) public function changeProperties(&$localobject)