contact = new Contact(); } /** * @covers \Modules\Profile\Models\Contact * @group module */ public function testDefault() : void { self::assertEquals(0, $this->contact->id); self::assertEquals('', $this->contact->name1); self::assertEquals('', $this->contact->name2); self::assertEquals('', $this->contact->name3); self::assertEquals('', $this->contact->description); self::assertEquals('', $this->contact->company); self::assertEquals('', $this->contact->job); self::assertNull($this->contact->birthday); self::assertInstanceOf('\Modules\Media\Models\Media', $this->contact->image); } }