mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 19:43:16 +00:00
18 lines
312 B
PHP
18 lines
312 B
PHP
<?php
|
|
|
|
abstract class PhraseanetAuthenticatedTestCase extends \PhraseanetTestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->authenticate(self::$DI['app']);
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->logout(self::$DI['app']);
|
|
parent::tearDown();
|
|
}
|
|
}
|