コード例 #1
0
 protected function getSerializedSelectionRequest(SelectionRequest $request)
 {
     return array('objectType' => 'selectionRequest', 'selectionRequestType' => $request->getType(), 'value' => $this->getValueSerialization($request));
 }
コード例 #2
0
 /**
  * @dataProvider instanceProvider
  *
  * @since 1.0
  *
  * @param SelectionRequest $request
  */
 public function testReturnTypeOfGetType(SelectionRequest $request)
 {
     $this->assertInternalType('string', $request->getType());
 }