Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions ide-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}