public function testResolveSearchAttributesFromSourceData()
 {
     $model = new AAASearchFormTestModel(new AAA());
     $model->anyMixedAttributes = '47';
     $dataCollection = new SavedSearchAttributesDataCollection($model);
     $searchAttributes = $dataCollection->resolveSearchAttributesFromSourceData();
     $this->assertEquals(array('anyMixedAttributes' => '47'), $searchAttributes);
     $_GET['AAASearchFormTestModel']['anyMixedAttributes'] = '46';
     $searchAttributes = $dataCollection->resolveSearchAttributesFromSourceData();
     $this->assertEquals(array('anyMixedAttributes' => '46'), $searchAttributes);
 }