Domain\Student\StudentMatterCompletedServiceTest::test_sync_student_dont_exists PHP Method

test_sync_student_dont_exists() public method

    public function test_sync_student_dont_exists()
    {
        //set
        $service = App::make(StudentMatterCompletedService::class);
        //expect
        $response = $service->sync(0, []);
        //assert
        $this->assertFalse($response);
    }