* improved dev fixtures with more diversity, more data, better testcases, user avatars #42 * added customer stats to dashboard, fixed column length for 3 widgets #42 * fixed empty alias - display empty message for new user #42 * unified-ui for "new" toolbar icon #42 * use kimai2_ as database prefix #42 * added customer stats to dashboard, fixed column length for 3 widgets #42 * fix long project/customer names in "currently active" navbar flyout" #42 * added services config for dev environment #42 * added command to run unit tests #42 * added command to run integration tests #42 * added command to run code sniffer #42 * added phpcs and phpunit to composer #42 * created tests directory #42 * fixed code sniffer warnings #42 * added function to switch result type from Pagerfanta to QueryBuilder #42 * dramatically reduced database calls by using custom joined query #42 * added command to install kimai dependencies #42 * added dev:reset command #42
73 lines
1.4 KiB
PHP
73 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: kevin
|
|
* Date: 07.01.18
|
|
* Time: 11:12
|
|
*/
|
|
|
|
namespace KimaiTest\TimesheetBundle\Repository\Query;
|
|
|
|
use AppBundle\Repository\Query\BaseQuery;
|
|
use \PHPUnit\Framework\TestCase;
|
|
|
|
class TimesheetQueryTest extends TestCase
|
|
{
|
|
public function testBaseQueryHasOverwrittenFields()
|
|
{
|
|
$class = new \ReflectionClass(new BaseQuery());
|
|
$this->assertTrue($class->hasProperty('order'));
|
|
$this->assertTrue($class->hasProperty('orderBy'));
|
|
}
|
|
|
|
public function testGetUser()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testSetUser()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testGetActivity()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testSetActivity()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testGetProject()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testSetProject()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testGetCustomer()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testSetCustomer()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testGetState()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
|
|
public function testSetState()
|
|
{
|
|
$this->markTestIncomplete(__METHOD__);
|
|
}
|
|
}
|