Shift with red gradient lettering
Loading navigation...

Format test cases

Premium
PHP

Ensure your test suite follows a consistent format by automatically applying common styles to your test cases.

Before

public function testItDoesSomething()
{
// ...
}

After
(Marker: Annotation, Case: Snake)

/** @test */
public function it_does_something()
{
// ...
}

← Back to the Workbench Tasks