mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 01:58:07 +00:00
- Authentication handled by DIGEST (MD5 and SHA-256) - Support of CLRTXT passwords in the DB - Expose sip account devices through the API - Tests, with databases running in memory - Documents for the deployment and API usage
10 lines
163 B
PHP
10 lines
163 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
}
|