getJson() public static method

Gets Json String of Object WebProfile
public static getJson ( ) : string
return string
 /**
  * @dataProvider mockProvider
  * @param WebProfile $obj
  */
 public function testGetList($obj, $mockApiContext)
 {
     $mockPPRestCall = $this->getMockBuilder('\\PayPal\\Transport\\PayPalRestCall')->disableOriginalConstructor()->getMock();
     $mockPPRestCall->expects($this->any())->method('execute')->will($this->returnValue(json_encode(array(json_decode(WebProfileTest::getJson())))));
     $result = $obj->get_list($mockApiContext, $mockPPRestCall);
     $this->assertNotNull($result);
 }