/**
  * tests if the modelconfiguration gets created for the traditional models
  */
 public function testModelCreationTraditional()
 {
     $contact = new Addressbook_Model_Contact(array('n_family' => 'Spencer', 'n_given' => 'Bud'));
     $cObj = $contact->getConfiguration();
     // at first this is just null
     $this->assertNull($cObj);
 }