Skip to content

Commit

Permalink
Merge pull request #29 from s-nakajima/master
Browse files Browse the repository at this point in the history
phpunit4以降でabstract classにする必要ある
  • Loading branch information
s-nakajima committed Aug 27, 2017
2 parents 88581d8 + 2b7e96f commit 67fd173
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions TestSuite/ReservationsDeleteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @package NetCommons\Reservations\TestSuite
* @codeCoverageIgnore
*/
class ReservationsDeleteTest extends NetCommonsDeleteTest {
abstract class ReservationsDeleteTest extends NetCommonsDeleteTest {

/**
* Fixtures
Expand Down Expand Up @@ -52,4 +52,4 @@ public function __construct($name = null, array $data = array(), $dataName = '')
parent::__construct($name, $data, $dataName);
}

}
}
4 changes: 2 additions & 2 deletions TestSuite/ReservationsGetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @package NetCommons\Reservations\TestSuite
* @codeCoverageIgnore
*/
class ReservationsGetTest extends NetCommonsGetTest {
abstract class ReservationsGetTest extends NetCommonsGetTest {

/**
* Fixtures
Expand Down Expand Up @@ -52,4 +52,4 @@ public function __construct($name = null, array $data = array(), $dataName = '')
parent::__construct($name, $data, $dataName);
}

}
}
4 changes: 2 additions & 2 deletions TestSuite/ReservationsModelTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @package NetCommons\Reservations\TestSuite
* @codeCoverageIgnore
*/
class ReservationsModelTestCase extends NetCommonsModelTestCase {
abstract class ReservationsModelTestCase extends NetCommonsModelTestCase {

/**
* Fixtures
Expand Down Expand Up @@ -52,4 +52,4 @@ public function __construct($name = null, array $data = array(), $dataName = '')
parent::__construct($name, $data, $dataName);
}

}
}
4 changes: 2 additions & 2 deletions TestSuite/ReservationsSaveTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @package NetCommons\Reservations\TestSuite
* @codeCoverageIgnore
*/
class ReservationsSaveTest extends NetCommonsSaveTest {
abstract class ReservationsSaveTest extends NetCommonsSaveTest {

/**
* Fixtures
Expand Down Expand Up @@ -52,4 +52,4 @@ public function __construct($name = null, array $data = array(), $dataName = '')
parent::__construct($name, $data, $dataName);
}

}
}
4 changes: 2 additions & 2 deletions TestSuite/ReservationsValidateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @package NetCommons\Reservations\TestSuite
* @codeCoverageIgnore
*/
class ReservationsValidateTest extends NetCommonsValidateTest {
abstract class ReservationsValidateTest extends NetCommonsValidateTest {

/**
* Fixtures
Expand Down Expand Up @@ -52,4 +52,4 @@ public function __construct($name = null, array $data = array(), $dataName = '')
parent::__construct($name, $data, $dataName);
}

}
}

0 comments on commit 67fd173

Please sign in to comment.