/**
  * Test getter/setter for sortOrder property
  */
 public function testGetSetSortOrder()
 {
     $this->assertEquals(0, $this->attribute->getSortOrder());
     $expectedOrder = 3;
     $this->assertEntity($this->attribute->setSortOrder($expectedOrder));
     $this->assertEquals($expectedOrder, $this->attribute->getSortOrder());
 }