diff --git a/ide-helper.php b/ide-helper.php index 96fe561..cfeb5f8 100644 --- a/ide-helper.php +++ b/ide-helper.php @@ -21,4 +21,25 @@ public function assertFormExists($selector = 'form', $callback = null) return $instance; } } + + class TestView + { + public function assertHtml5() + { + /** @var \Illuminate\Testing\TestResponse $instance */ + return $instance; + } + + public function assertElementExists($selector = 'body', $callback = null) + { + /** @var \Illuminate\Testing\TestResponse $instance */ + return $instance; + } + + public function assertFormExists($selector = 'form', $callback = null) + { + /** @var \Illuminate\Testing\TestResponse $instance */ + return $instance; + } + } }