true, 'family_floaters' => [ 'childrens' => 2, 'spouse' => 1, 'either-parents-pil' => 0, 'parents' => 2, 'parents-in-law' => 2, ], ]; // Sample action array $actionArr = 'addition'; // Call the function $result = check_dependent_conflict($family_data, $policy_terms, $actionArr); Kint::dump($result); // Assert that the status is true (no conflicts) $this->assertTrue($result['status']); } // public function testIsNull() // { // $i = null; // $this->assertTrue($i); // } }