public function testGetAccountPassword()
 {
     $storeId = 1;
     $configPasswordKey = 'password';
     $password = '******';
     $this->scopeConfig->expects($this->once())->method('getValue')->with('google/googleshopping/' . $configPasswordKey, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId)->will($this->returnValue($password));
     $this->assertEquals($password, $this->model->getAccountPassword($storeId));
 }