Fix tests
This commit is contained in:
parent
7c876d75c9
commit
3f5321af9d
|
@ -11,7 +11,7 @@ class CourseFactoryTest extends TestCase
|
|||
{
|
||||
public function testItCanRenderACourseAsJson(): void
|
||||
{
|
||||
$course = Course::factory()->toCourse();
|
||||
$course = Course::toFactory()->toCourse();
|
||||
|
||||
$json = $course->toArray();
|
||||
$data = json_decode(json_encode($json));
|
||||
|
|
|
@ -4,11 +4,9 @@ namespace Zoomyboy\LaravelNami\Tests\Unit;
|
|||
|
||||
use Zoomyboy\LaravelNami\Data\Course;
|
||||
use Zoomyboy\LaravelNami\Exceptions\NoJsonReceivedException;
|
||||
use Zoomyboy\LaravelNami\Exceptions\NotAuthenticatedException;
|
||||
use Zoomyboy\LaravelNami\Exceptions\NotSuccessfulException;
|
||||
use Zoomyboy\LaravelNami\Fakes\CourseFake;
|
||||
use Zoomyboy\LaravelNami\LoginException;
|
||||
use Zoomyboy\LaravelNami\Nami;
|
||||
use Zoomyboy\LaravelNami\Tests\TestCase;
|
||||
|
||||
class CourseTest extends TestCase
|
||||
|
@ -17,7 +15,7 @@ class CourseTest extends TestCase
|
|||
{
|
||||
app(CourseFake::class)
|
||||
->fetches(11111, [788])
|
||||
->shows(11111, Course::factory()->toCourse([
|
||||
->shows(11111, Course::toFactory()->toCourse([
|
||||
'bausteinId' => 506,
|
||||
'id' => 788,
|
||||
'veranstalter' => 'KJA',
|
||||
|
@ -41,8 +39,8 @@ class CourseTest extends TestCase
|
|||
{
|
||||
app(CourseFake::class)
|
||||
->fetches(11111, [788, 789])
|
||||
->shows(11111, Course::factory()->id(788)->toCourse())
|
||||
->shows(11111, Course::factory()->id(789)->toCourse());
|
||||
->shows(11111, Course::toFactory()->id(788)->toCourse())
|
||||
->shows(11111, Course::toFactory()->id(789)->toCourse());
|
||||
|
||||
$courses = $this->login()->coursesOf(11111);
|
||||
|
||||
|
@ -54,7 +52,7 @@ class CourseTest extends TestCase
|
|||
app(CourseFake::class)
|
||||
->fetches(11111, [788, 789])
|
||||
->failsShowingWithHtml(11111, 788)
|
||||
->shows(11111, Course::factory()->id(789)->toCourse());
|
||||
->shows(11111, Course::toFactory()->id(789)->toCourse());
|
||||
|
||||
$courses = $this->login()->coursesOf(11111);
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ class MemberFactoryTest extends TestCase
|
|||
{
|
||||
public function testItCanRenderMemberAsJson(): void
|
||||
{
|
||||
$member = Member::factory()->toMember();
|
||||
$member = Member::toFactory()->toMember();
|
||||
|
||||
$json = $member->toArray();
|
||||
$data = json_decode(json_encode($json));
|
||||
|
|
|
@ -11,7 +11,7 @@ class MembershipEntryFactoryTest extends TestCase
|
|||
{
|
||||
public function testItCanRenderACourseAsJson(): void
|
||||
{
|
||||
$membership = MembershipEntry::factory()->toMembership();
|
||||
$membership = MembershipEntry::toFactory()->toMembership();
|
||||
|
||||
$json = $membership->toArray();
|
||||
$data = json_decode(json_encode($json));
|
||||
|
|
Loading…
Reference in New Issue