Пример #1
0
 /**
  * @covers Phramework\Testphase\Testphase::setBase
  */
 public function testSetBase()
 {
     $base = 'http://jsonplaceholder.typicode.com/';
     Testphase::setBase($base);
     return $base;
 }
Пример #2
0
<?php

use Phramework\Testphase\Testphase;
use Phramework\Testphase\TestParser;
$settings = (include __DIR__ . '/../settings.php');
Testphase::setBase($settings['base']);
TestParser::addGlobal('randInteger10', rand(1, 10));
TestParser::addGlobal('headerRequestContentType', 'Content-Type: application/json');
TestParser::addGlobal('headerRequestAccept', 'Accept: application/json');
TestParser::addGlobal('headerResponseContentType', 'application/json;charset=utf-8');
Пример #3
0
<?php

/**
 * Copyright 2015 - 2016 Xenofon Spafaridis
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
use Phramework\Testphase\Globals;
\Phramework\Testphase\Testphase::setBase('http://jsonplaceholder.typicode.com/');
Globals::set('getIds', [7, 6]);
//$testParser = new \Phramework\Testphase\TestParser('./tests/tests/GETById-iterator.json');
//$testParser->createTest();
//die();