-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fefa95f
commit c9e213d
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace Wporg\Tests\Event; | ||
|
||
use Wporg\Tests\Base_Test; | ||
use Wporg\TranslationEvents\Attendee\Attendee_Repository; | ||
use Wporg\TranslationEvents\Event\Event_Repository; | ||
use Wporg\TranslationEvents\Event\Event_Form_Handler; | ||
|
||
|
||
|
||
class Event_Form_Handler_Test extends Base_Test { | ||
private Event_Repository $event_repository; | ||
private Attendee_Repository $attendee_repository; | ||
private $event_form_handler; | ||
|
||
public function setUp(): void { | ||
parent::setUp(); | ||
$this->attendee_repository = new Attendee_Repository(); | ||
$this->event_repository = new Event_Repository( $this->now, $this->attendee_repository ); | ||
$this->event_form_handler = new Event_Form_Handler( $this->now, $this->event_repository ); | ||
} | ||
} |