/**
  * @test
  */
 public function roundTripCryptStringAppliedTwoTimesReturnsOriginalString()
 {
     $clearText = 'Hello world!';
     $refValue = $this->fixture->_callRef('roundTripCryptString', $clearText);
     $this->assertEquals($clearText, $this->fixture->_callRef('roundTripCryptString', $refValue));
 }