SevenShores\Hubspot\Tests\Unit\Support\QueryBuilderTest::encode PHP Method

encode() public method

public encode ( )
    public function encode()
    {
        $string = "I wan't this encoded!";
        $queryString = url_encode($string);
        $this->assertEquals('I%20wan%27t%20this%20encoded%21', $queryString);
    }