public function providerDimensions()
 {
     return array(array(BusinessType::none(), Scope::none(), Country::none(), Publisher::none()), array(BusinessType::none(), Scope::none(), Country::create(), Publisher::create()), array(BusinessType::none(), Scope::none(), Country::create(1), Publisher::create(1)), array(BusinessType::b2b(), Scope::gglobal(), Country::none(), Publisher::none()), array(BusinessType::b2c(), Scope::publisher(), Country::create(1), Publisher::create(2)));
 }
示例#2
0
 public function provider()
 {
     return array(array(new BusinessType(), false, BusinessType::getNullStrRepresentation()), array(new BusinessType(BusinessType::B2B), true, BusinessType::B2B), array(new BusinessType(BusinessType::B2C), true, BusinessType::B2C));
 }