controller = $this->getMock( 'Cake\Controller\Controller', ['header', 'redirect', 'render', '_stop'] ); $this->controller->Trait = $this->getMockForTrait('Users\Controller\Traits\PasswordManagementTrait'); } public function tearDown() { parent::tearDown(); } public function testChangePassword() { $this->markTestIncomplete(); } public function testResetPassword() { $this->markTestIncomplete(); } public function testRequestResetPassword() { $this->markTestIncomplete(); } }