arguments = new SugGetArguments(); } /** * @return void */ public function testCreatesArgumentsWithFuzzyModifier(): void { $this->arguments->fuzzy(); $this->assertSame(['FUZZY'], $this->arguments->toArray()); } /** * @return void */ public function testCreatesArgumentsWithMaxModifier(): void { $this->arguments->max(5); $this->assertSame(['MAX', 5], $this->arguments->toArray()); } }