128 lines
2.7 KiB
PHP
128 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* ContactApiTest
|
|
* PHP version 5
|
|
*
|
|
* @category Class
|
|
* @package SMSGatewayMe\Client
|
|
* @author http://github.com/swagger-api/swagger-codegen
|
|
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Licene v2
|
|
* @link https://github.com/swagger-api/swagger-codegen
|
|
*/
|
|
/**
|
|
* Copyright 2016 SmartBear Software
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen
|
|
* Please update the test case below to test the endpoint.
|
|
*/
|
|
|
|
namespace SMSGatewayMe\Client\Api;
|
|
|
|
use \SMSGatewayMe\Client\Configuration;
|
|
use \SMSGatewayMe\Client\ApiClient;
|
|
use \SMSGatewayMe\Client\ApiException;
|
|
use \SMSGatewayMe\Client\ObjectSerializer;
|
|
|
|
/**
|
|
* ContactApiTest Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package SMSGatewayMe\Client
|
|
* @author http://github.com/swagger-api/swagger-codegen
|
|
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Licene v2
|
|
* @link https://github.com/swagger-api/swagger-codegen
|
|
*/
|
|
class ContactApiTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Setup before running each test case
|
|
*/
|
|
public static function setUpBeforeClass() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Clean up after running each test case
|
|
*/
|
|
public static function tearDownAfterClass() {
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Test case for addPhoneNumber
|
|
*
|
|
* The phone number to add
|
|
*
|
|
*/
|
|
public function test_addPhoneNumber() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Test case for createContacts
|
|
*
|
|
* Create Contacts
|
|
*
|
|
*/
|
|
public function test_createContacts() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Test case for deletePhoneNumber
|
|
*
|
|
* The phone number to delete
|
|
*
|
|
*/
|
|
public function test_deletePhoneNumber() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Test case for getContact
|
|
*
|
|
* Get a specific contact
|
|
*
|
|
*/
|
|
public function test_getContact() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Test case for searchContacts
|
|
*
|
|
* Search contacts
|
|
*
|
|
*/
|
|
public function test_searchContacts() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Test case for updateContact
|
|
*
|
|
* Update contact
|
|
*
|
|
*/
|
|
public function test_updateContact() {
|
|
|
|
}
|
|
|
|
}
|