mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
18 lines
325 B
PHP
18 lines
325 B
PHP
<?php
|
|
|
|
abstract class PhraseanetPHPUnitAuthenticatedAbstract extends PhraseanetPHPUnitAbstract
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->authenticate(self::$DI['app']);
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->logout(self::$DI['app']);
|
|
parent::tearDown();
|
|
}
|
|
}
|