/**
  * @covers WindowsAzure\Common\ServicesBuilder::createTableService
  * @covers WindowsAzure\Common\ServicesBuilder::httpClient
  * @covers WindowsAzure\Common\ServicesBuilder::serializer
  * @covers WindowsAzure\Common\ServicesBuilder::mimeSerializer
  * @covers WindowsAzure\Common\ServicesBuilder::atomSerializer
  * @covers WindowsAzure\Common\ServicesBuilder::tableAuthenticationScheme
  */
 public function testBuildForTable()
 {
     // Setup
     $builder = new ServicesBuilder();
     // Test
     $tableRestProxy = $builder->createTableService(TestResources::getWindowsAzureStorageServicesConnectionString());
     // Assert
     $this->assertInstanceOf('WindowsAzure\\Table\\Internal\\ITable', $tableRestProxy);
 }
 public function __construct()
 {
     parent::__construct();
     $this->connectionString = TestResources::getWindowsAzureStorageServicesConnectionString();
 }