DataSift\Storyplayer\PlayerLib\Story::inGroup PHP Method

inGroup() public method

which group of tests does this story belong to?
public inGroup ( array | string $groupName ) : Story
$groupName array | string the group to use
return Story $this for fluent interface
    public function inGroup($groupName)
    {
        if (!is_array($groupName)) {
            $parts = explode(" > ", $groupName);
            $groupName = $parts;
        }
        $this->setGroup($groupName);
        return $this;
    }