Skip to content
Snippets Groups Projects
Commit 1ed33fb6 authored by Rich's avatar Rich
Browse files

add dummy test (remove this after fixing install bug)

parent cdf2ba9d
No related branches found
No related tags found
1 merge request!31fix tests
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
/**
* Dummy TEMPORARY test which requires the reinstallation of the test db
* for debugging problems with installation.
*
* @group headless
*/
class CRM_Dataprocessor_Dummy extends CRM_Dataprocessor_TestBase {
public function setUpHeadless() {
// Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile().
// See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest
return \Civi\Test::headless()
->installMe(__DIR__)
->apply(TRUE);
}
public function testDummy() {
$this->assertTrue(TRUE);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment