mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-06-14 02:33:36 +00:00
cs
This commit is contained in:
parent
997154565f
commit
44952b06a4
6 changed files with 14 additions and 14 deletions
lib/Cake/Test/Case
|
@ -2050,7 +2050,7 @@ class ModelValidationTest extends BaseModelTest {
|
|||
/**
|
||||
* testValidateFirstWithDefaults method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testFirstWithDefaults() {
|
||||
$this->loadFixtures('Article', 'Tag', 'Comment', 'User', 'ArticlesTag');
|
||||
|
|
|
@ -6784,7 +6784,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllFieldListHasMany method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllFieldListHasMany() {
|
||||
$this->loadFixtures('Article', 'Comment');
|
||||
|
@ -6971,7 +6971,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllDeepFieldListHasMany method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllDeepFieldListHasMany() {
|
||||
$this->loadFixtures('Article', 'Comment', 'User');
|
||||
|
@ -7014,7 +7014,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllDeepHasManyBelongsTo method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllDeepHasManyBelongsTo() {
|
||||
$this->loadFixtures('Article', 'Comment', 'User');
|
||||
|
@ -7066,7 +7066,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllDeepHasManyhasMany method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllDeepHasManyHasMany() {
|
||||
$this->loadFixtures('Article', 'Comment', 'User', 'Attachment');
|
||||
|
@ -7122,7 +7122,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllDeepOrderHasManyHasMany method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllDeepOrderHasManyHasMany() {
|
||||
$this->loadFixtures('Article', 'Comment', 'User', 'Attachment');
|
||||
|
@ -7159,7 +7159,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testSaveAllDeepEmptyHasManyHasMany method
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testSaveAllDeepEmptyHasManyHasMany() {
|
||||
$this->skipIf(!$this->db instanceof Mysql, 'This test is only compatible with Mysql.');
|
||||
|
@ -7197,7 +7197,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testUpdateAllBoolean
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testUpdateAllBoolean() {
|
||||
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');
|
||||
|
@ -7212,7 +7212,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testUpdateAllBooleanConditions
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testUpdateAllBooleanConditions() {
|
||||
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');
|
||||
|
@ -7229,7 +7229,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
/**
|
||||
* testUpdateBoolean
|
||||
*
|
||||
* return @void
|
||||
* @return void
|
||||
*/
|
||||
public function testUpdateBoolean() {
|
||||
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');
|
||||
|
|
|
@ -118,7 +118,7 @@ class CakeSocketTest extends CakeTestCase {
|
|||
*
|
||||
* @dataProvider invalidConnections
|
||||
* @expectedException SocketException
|
||||
* return void
|
||||
* @return void
|
||||
*/
|
||||
public function testInvalidConnection($data) {
|
||||
$this->Socket->config = array_merge($this->Socket->config, $data);
|
||||
|
|
|
@ -355,7 +355,7 @@ class HttpResponseTest extends CakeTestCase {
|
|||
*
|
||||
* @dataProvider invalidParseResponseDataProvider
|
||||
* @expectedException SocketException
|
||||
* return void
|
||||
* @return void
|
||||
*/
|
||||
public function testInvalidParseResponseData($value) {
|
||||
$this->HttpResponse->parseResponse($value);
|
||||
|
|
|
@ -174,7 +174,7 @@ class HashTest extends CakeTestCase {
|
|||
/**
|
||||
* Test get()
|
||||
*
|
||||
* return void
|
||||
* @return void
|
||||
*/
|
||||
public function testGet() {
|
||||
$data = array('abc', 'def');
|
||||
|
|
|
@ -206,7 +206,7 @@ class XmlTest extends CakeTestCase {
|
|||
/**
|
||||
* test build with a single empty tag
|
||||
*
|
||||
* return void
|
||||
* @return void
|
||||
*/
|
||||
public function testBuildEmptyTag() {
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue