public function testGetDefaultValueMultipleStdWrap()
 {
     $this->markTestSkipped('This test is currently not working in T3 6.1.7 - problem arises in AbstractUserAuthentication.php::904');
     $this->testingFramework->createFakeFrontEnd(0);
     $filterSettings = $this->filterSettings;
     $filterSettings['defaultValue'] = array(10 => 'one', 20 => array('cObject' => array('value' => 'together', '_typoScriptNodeValue' => 'TEXT')), '_typoScriptNodeValue' => '');
     $filterConfig = new Tx_PtExtlist_Domain_Configuration_Filters_FilterConfig($this->configurationBuilderMock, $filterSettings, 'test');
     $this->assertEquals($filterConfig->getdefaultValue(), array(10 => 'one', 20 => 'together'));
 }