batch = new BatchPosting(); } /** * @covers \Modules\Accounting\Models\BatchPosting * @group module */ public function testDefault() : void { self::assertEquals(0, $this->batch->id); self::assertEquals(0, $this->batch->creator); self::assertEquals('', $this->batch->description); self::assertEquals(0, $this->batch->count()); self::assertInstanceOf('\DateTimeImmutable', $this->batch->created); } }