group() 공개 메소드

Get the widget group object.
public group ( $name ) : Arrilot\Widgets\WidgetGroup
$name
리턴 Arrilot\Widgets\WidgetGroup
 public function testItGrantsAccessToWidgetGroup()
 {
     $groupObject = $this->collection->group('sidebar');
     $expectedObject = new WidgetGroup('sidebar', new TestApplicationWrapper());
     $this->assertEquals($expectedObject, $groupObject);
 }