/** * ProjectType::setBooleanData() * */ public function testSetBooleanDataTrue() { $this->setVars(); $this->projectData['checkbox'] = true; $data = ProjectType::setBooleanData($this->project->name . "_test", $this->projectData); $this->assertInternalType('array', $data); $this->assertEquals(true, $data['checkbox']); }