Merged in release/3.8.1 (pull request #8656)

release/3.8.1
This commit is contained in:
Paula Quispe
2022-12-05 19:22:22 +00:00
114 changed files with 1615 additions and 790 deletions

View File

@@ -28,13 +28,22 @@ use Tests\TestCase;
*/
class CasesTest extends TestCase
{
/**
* This method is called before the first test of this test class is run.
* @return void
*/
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
self::truncateNonInitialModels();
}
/**
* Set up method.
*/
public function setUp(): void
{
parent::setUp();
$this->truncateNonInitialModels();
User::where('USR_ID', '=', 1)
->where('USR_ID', '=', 2)
->delete();
@@ -333,6 +342,7 @@ class CasesTest extends TestCase
*/
public function it_should_test_get_dynaforms_by_application()
{
Application::truncate();
// Create a process
$process = Process::factory()->create();