assertSame('\\' . User::class, $namespacedClassname); $this->assertTrue( class_exists($namespacedClassname), sprintf('Assertion failed that "%s" class exists', $namespacedClassname) ); $this->markTestIncomplete( 'Test of "User" model has not been implemented yet.' ); } /** * Test attribute "id" */ public function testPropertyId() { $this->markTestIncomplete( 'Test of "id" property in "User" model has not been implemented yet.' ); } /** * Test attribute "username" */ public function testPropertyUsername() { $this->markTestIncomplete( 'Test of "username" property in "User" model has not been implemented yet.' ); } /** * Test attribute "firstName" */ public function testPropertyFirstName() { $this->markTestIncomplete( 'Test of "firstName" property in "User" model has not been implemented yet.' ); } /** * Test attribute "lastName" */ public function testPropertyLastName() { $this->markTestIncomplete( 'Test of "lastName" property in "User" model has not been implemented yet.' ); } /** * Test attribute "email" */ public function testPropertyEmail() { $this->markTestIncomplete( 'Test of "email" property in "User" model has not been implemented yet.' ); } /** * Test attribute "password" */ public function testPropertyPassword() { $this->markTestIncomplete( 'Test of "password" property in "User" model has not been implemented yet.' ); } /** * Test attribute "phone" */ public function testPropertyPhone() { $this->markTestIncomplete( 'Test of "phone" property in "User" model has not been implemented yet.' ); } /** * Test attribute "userStatus" */ public function testPropertyUserStatus() { $this->markTestIncomplete( 'Test of "userStatus" property in "User" model has not been implemented yet.' ); } /** * Test getOpenApiSchema static method * @covers ::getOpenApiSchema */ public function testGetOpenApiSchema() { $schemaArr = User::getOpenApiSchema(); $this->assertIsArray($schemaArr); } }