This commit is contained in:
euromark 2014-04-02 02:23:43 +02:00
parent 997154565f
commit 44952b06a4
6 changed files with 14 additions and 14 deletions

View file

@ -2050,7 +2050,7 @@ class ModelValidationTest extends BaseModelTest {
/** /**
* testValidateFirstWithDefaults method * testValidateFirstWithDefaults method
* *
* return @void * @return void
*/ */
public function testFirstWithDefaults() { public function testFirstWithDefaults() {
$this->loadFixtures('Article', 'Tag', 'Comment', 'User', 'ArticlesTag'); $this->loadFixtures('Article', 'Tag', 'Comment', 'User', 'ArticlesTag');

View file

@ -6784,7 +6784,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllFieldListHasMany method * testSaveAllFieldListHasMany method
* *
* return @void * @return void
*/ */
public function testSaveAllFieldListHasMany() { public function testSaveAllFieldListHasMany() {
$this->loadFixtures('Article', 'Comment'); $this->loadFixtures('Article', 'Comment');
@ -6971,7 +6971,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllDeepFieldListHasMany method * testSaveAllDeepFieldListHasMany method
* *
* return @void * @return void
*/ */
public function testSaveAllDeepFieldListHasMany() { public function testSaveAllDeepFieldListHasMany() {
$this->loadFixtures('Article', 'Comment', 'User'); $this->loadFixtures('Article', 'Comment', 'User');
@ -7014,7 +7014,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllDeepHasManyBelongsTo method * testSaveAllDeepHasManyBelongsTo method
* *
* return @void * @return void
*/ */
public function testSaveAllDeepHasManyBelongsTo() { public function testSaveAllDeepHasManyBelongsTo() {
$this->loadFixtures('Article', 'Comment', 'User'); $this->loadFixtures('Article', 'Comment', 'User');
@ -7066,7 +7066,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllDeepHasManyhasMany method * testSaveAllDeepHasManyhasMany method
* *
* return @void * @return void
*/ */
public function testSaveAllDeepHasManyHasMany() { public function testSaveAllDeepHasManyHasMany() {
$this->loadFixtures('Article', 'Comment', 'User', 'Attachment'); $this->loadFixtures('Article', 'Comment', 'User', 'Attachment');
@ -7122,7 +7122,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllDeepOrderHasManyHasMany method * testSaveAllDeepOrderHasManyHasMany method
* *
* return @void * @return void
*/ */
public function testSaveAllDeepOrderHasManyHasMany() { public function testSaveAllDeepOrderHasManyHasMany() {
$this->loadFixtures('Article', 'Comment', 'User', 'Attachment'); $this->loadFixtures('Article', 'Comment', 'User', 'Attachment');
@ -7159,7 +7159,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testSaveAllDeepEmptyHasManyHasMany method * testSaveAllDeepEmptyHasManyHasMany method
* *
* return @void * @return void
*/ */
public function testSaveAllDeepEmptyHasManyHasMany() { public function testSaveAllDeepEmptyHasManyHasMany() {
$this->skipIf(!$this->db instanceof Mysql, 'This test is only compatible with Mysql.'); $this->skipIf(!$this->db instanceof Mysql, 'This test is only compatible with Mysql.');
@ -7197,7 +7197,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testUpdateAllBoolean * testUpdateAllBoolean
* *
* return @void * @return void
*/ */
public function testUpdateAllBoolean() { public function testUpdateAllBoolean() {
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio'); $this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');
@ -7212,7 +7212,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testUpdateAllBooleanConditions * testUpdateAllBooleanConditions
* *
* return @void * @return void
*/ */
public function testUpdateAllBooleanConditions() { public function testUpdateAllBooleanConditions() {
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio'); $this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');
@ -7229,7 +7229,7 @@ class ModelWriteTest extends BaseModelTest {
/** /**
* testUpdateBoolean * testUpdateBoolean
* *
* return @void * @return void
*/ */
public function testUpdateBoolean() { public function testUpdateBoolean() {
$this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio'); $this->loadFixtures('Item', 'Syfile', 'Portfolio', 'Image', 'ItemsPortfolio');

View file

@ -118,7 +118,7 @@ class CakeSocketTest extends CakeTestCase {
* *
* @dataProvider invalidConnections * @dataProvider invalidConnections
* @expectedException SocketException * @expectedException SocketException
* return void * @return void
*/ */
public function testInvalidConnection($data) { public function testInvalidConnection($data) {
$this->Socket->config = array_merge($this->Socket->config, $data); $this->Socket->config = array_merge($this->Socket->config, $data);

View file

@ -355,7 +355,7 @@ class HttpResponseTest extends CakeTestCase {
* *
* @dataProvider invalidParseResponseDataProvider * @dataProvider invalidParseResponseDataProvider
* @expectedException SocketException * @expectedException SocketException
* return void * @return void
*/ */
public function testInvalidParseResponseData($value) { public function testInvalidParseResponseData($value) {
$this->HttpResponse->parseResponse($value); $this->HttpResponse->parseResponse($value);

View file

@ -174,7 +174,7 @@ class HashTest extends CakeTestCase {
/** /**
* Test get() * Test get()
* *
* return void * @return void
*/ */
public function testGet() { public function testGet() {
$data = array('abc', 'def'); $data = array('abc', 'def');

View file

@ -206,7 +206,7 @@ class XmlTest extends CakeTestCase {
/** /**
* test build with a single empty tag * test build with a single empty tag
* *
* return void * @return void
*/ */
public function testBuildEmptyTag() { public function testBuildEmptyTag() {
try { try {