generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 25
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
9239503
commit a5e2da6
Showing
1 changed file
with
50 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,50 @@ | ||
<?php | ||
|
||
namespace Livewire\Features\SupportTesting { | ||
|
||
class Testable { | ||
public function assertPropertyWired(string $property): self {} | ||
|
||
public function assertPropertyNotWired(string $property): self {} | ||
|
||
public function assertPropertyEntangled(string $property): self {} | ||
|
||
public function assertPropertyNotEntangled(string $property): self {} | ||
|
||
public function assertMethodWired(string $method): self {} | ||
|
||
public function assertMethodNotWired(string $method): self {} | ||
|
||
public function assertMethodWiredToAction(string $methodName, string $action): self {} | ||
|
||
public function assertMethodNotWiredToAction(string $methodName, string $action): self {} | ||
|
||
public function assertMethodWiredToForm(string $method): self {} | ||
|
||
public function assertMethodNotWiredToForm(string $method): self {} | ||
|
||
public function assertMethodWiredToEvent(string $method, string $event): self {} | ||
|
||
public function assertMethodNotWiredToEvent(string $method, string $event): self {} | ||
|
||
public function assertMethodWiredToEventWithoutModifiers(string $method, string $event): self {} | ||
|
||
public function assertMethodNotWiredToEventWithoutModifiers(string $method, string $event): self {} | ||
|
||
public function assertContainsLivewireComponent(string $componentNeedleClass): self {} | ||
|
||
public function assertDoesNotContainLivewireComponent(string $componentNeedleClass): self {} | ||
|
||
public function assertContainsBladeComponent(string $componentNeedleClass): self {} | ||
|
||
public function assertDoesNotContainBladeComponent(string $componentNeedleClass): self {} | ||
|
||
public function assertSeeBefore($valueBefore, $valueAfter): self {} | ||
|
||
public function assertDoNotSeeBefore($valueBefore, $valueAfter): self {} | ||
|
||
public function assertFileDownloadedContains($content): self {} | ||
|
||
public function assertFileDownloadedNotContains($content): self {} | ||
} | ||
} |