Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(dev/core#647) Fix up Test Class names and file names to ensure all t… #13415

Merged
merged 1 commit into from
Jan 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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