arguments = new IncrByArguments(); } /** * @return void */ public function testCreatesArgumentsWithTimestampModifier(): void { $this->arguments->timestamp('*'); $this->assertSame(['TIMESTAMP', '*'], $this->arguments->toArray()); } /** * @return void */ public function testCreatesArgumentsWithUncompressedModifier(): void { $this->arguments->uncompressed(); $this->assertSame(['UNCOMPRESSED'], $this->arguments->toArray()); } }