setData() public method

Set data on all components
public setData ( array $data )
$data array map of field names to data values
 public function testShouldNotCreateBlankAddresses()
 {
     $beforeCount = Address::get()->count();
     $this->config->setData(array('BillingAddressBookCheckoutComponent_BillingAddressID' => $this->address1->ID));
     $this->assertEquals($this->cart->BillingAddressID, $this->address1->ID);
     $this->assertEquals($beforeCount, Address::get()->count());
 }