* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ use App\Http\Requests\Staff\RejectApplicationRequest; beforeEach(function (): void { $this->subject = new RejectApplicationRequest(); }); test('rules', function (): void { $actual = $this->subject->rules(); $this->assertValidationRules([ 'deny' => 'required', ], $actual); });