25 lines
556 B
PHP
25 lines
556 B
PHP
<?php namespace Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Mockery;
|
|
|
|
use Packback\Lti1p3\Interfaces\LtiServiceConnectorInterface;
|
|
use Packback\Lti1p3\LtiAssignmentsGradesService;
|
|
|
|
class LtiAssignmentsGradesServiceTest extends TestCase
|
|
{
|
|
|
|
public function testItInstantiates()
|
|
{
|
|
$connector = Mockery::mock(LtiServiceConnectorInterface::class);
|
|
|
|
$service = new LtiAssignmentsGradesService($connector, []);
|
|
|
|
$this->assertInstanceOf(LtiAssignmentsGradesService::class, $service);
|
|
}
|
|
|
|
/**
|
|
* @todo Test this
|
|
*/
|
|
}
|