public function testSetAttributeGroupFilter()
 {
     $collection = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create('Magento\\Eav\\Model\\ResourceModel\\Entity\\Attribute\\Collection');
     $groupsPresent = $this->_getGroups($collection);
     $includeGroupId = current($groupsPresent);
     $this->_model->setAttributeGroupFilter($includeGroupId);
     $groups = $this->_getGroups($this->_model);
     $this->assertEquals([$includeGroupId], $groups);
 }