PMC-1073 Solve the issue in the Circle CI related to LightTest

This commit is contained in:
Roly Rudy Gutierrez Pinto
2019-08-23 11:51:51 -04:00
parent a94bda4efb
commit 7e3944d4b9
6 changed files with 79 additions and 252 deletions

View File

@@ -15,12 +15,24 @@ class ProcessesTest extends TestCase
{
/**
* This is using instead of DatabaseTransactions
* @todo DatabaseTransactions is having conflicts with propel
* Constructor of the class.
*
* @param string $name
* @param array $data
* @param string $dataName
*/
public function __construct($name = null, array $data = [], $dataName = '')
{
parent::__construct($name, $data, $dataName);
}
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->markTestIncomplete();//@todo: Please correct this unit test
parent::setUp();
}
/**