Skip to content

Commit

Permalink
(dev/core#647) Fix up Test Class names and file names to ensure all t…
Browse files Browse the repository at this point in the history
…est classes are run by Jenkins
  • Loading branch information
seamuslee001 committed Jan 7, 2019
1 parent e9d8133 commit c71299c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Contact/SelectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @package CiviCRM
* @group headless
*/
class CRM_Contact_Form_SelectorTest extends CiviUnitTestCase {
class CRM_Contact_SelectorTest extends CiviUnitTestCase {

public function tearDown() {

Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Contribute/Form/TaskTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Class CRM_Contribute_Form_Tasktest
*/
class CRM_Contribute_Form_Tasktest extends CiviUnitTestCase {
class CRM_Contribute_Form_TaskTest extends CiviUnitTestCase {
/**
* Assume empty database with just civicrm_data.
*/
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Event/Form/Registration/RegisterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Class CRM_Event_Form_RegistrationTest
* @group headless
*/
class CRM_Event_Form_RegistrationTest extends CiviUnitTestCase {
class CRM_Event_Form_Registration_RegistrationTest extends CiviUnitTestCase {

public function setUp() {
parent::setUp();
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Import/DataSource/CsvTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Tests for the CRM_Import_Datasource_Csv class.
*/
class CRM_Import_Datasource_CsvTest extends CiviUnitTestCase {
class CRM_Import_DataSource_CsvTest extends CiviUnitTestCase {

/**
* Test the to csv function.
Expand Down
4 changes: 2 additions & 2 deletions tests/phpunit/api/v3/UserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
*/

/**
* Test APIv3 civicrm_website_* functions
* Test APIv3 civicrm_user_* functions
*
* @package CiviCRM_APIv3
* @subpackage API_Contact
* @group headless
*/
class api_v3_UserWebsiteTest extends CiviUnitTestCase {
class api_v3_UserTest extends CiviUnitTestCase {
protected $_apiversion = 3;
protected $params;
protected $_entity = 'User';
Expand Down

0 comments on commit c71299c

Please sign in to comment.