/**
  * @covers WindowsAzure\Table\Models\EdmType::processType
  */
 public function testProcessType()
 {
     // Setup
     $expected = EdmType::BINARY;
     // Test
     $actual = EdmType::processType($expected);
     // Assert
     $this->assertEquals($expected, $actual);
 }
 /**
  * Constructor.
  * 
  * @param string $edmType The EDM type.
  * @param string $value   The EDM value.
  */
 public function __construct($edmType, $value)
 {
     $this->_edmType = EdmType::processType($edmType);
     $this->_value = $value;
 }