Skip to content

Commit 6dde2ca

Browse files
chore: prepare release (#26)
Co-authored-by: ubill-ci[bot] <214821999+ubill-ci[bot]@users.noreply.github.com>
1 parent 3703694 commit 6dde2ca

13 files changed

+1010
-6
lines changed

.openapi-generator/FILES

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,12 @@ src/Model/SMSBalanceResponse.php
3737
src/Model/SendSMSRequest.php
3838
src/Model/SendSMSResponse.php
3939
src/ObjectSerializer.php
40-
test/Model/CreateBrandNameRequestTest.php
41-
test/Model/SendSMSRequestTest.php
40+
test/Api/SmsApiTest.php
41+
test/Model/BaseResponseTest.php
42+
test/Model/BrandNameTest.php
43+
test/Model/BrandNamesResponseTest.php
44+
test/Model/CreateBrandNameResponseTest.php
45+
test/Model/DeliveryReportItemTest.php
46+
test/Model/DeliveryReportResponseTest.php
47+
test/Model/SMSBalanceResponseTest.php
48+
test/Model/SendSMSResponseTest.php

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ vendor/bin/phpunit
101101
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
102102

103103
- API version: `2.1.8`
104-
- Package version: `0.1.1`
104+
- Package version: `0.2.0`
105105
- Generator version: `7.13.0`
106106
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`
107107

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ubill/sdk",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "UBill API - provides programmatic access to our resources. You will be able to integrate our service into your system and communicate with clients easily.",
55
"keywords": [
66
"openapitools",

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class Configuration
102102
*
103103
* @var string
104104
*/
105-
protected $userAgent = 'OpenAPI-Generator/0.1.1/PHP';
105+
protected $userAgent = 'OpenAPI-Generator/0.2.0/PHP';
106106

107107
/**
108108
* Debug switch (default set to false)
@@ -435,7 +435,7 @@ public static function toDebugReport()
435435
$report .= ' OS: ' . php_uname() . PHP_EOL;
436436
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
437437
$report .= ' The version of the OpenAPI document: 2.1.8' . PHP_EOL;
438-
$report .= ' SDK Package Version: 0.1.1' . PHP_EOL;
438+
$report .= ' SDK Package Version: 0.2.0' . PHP_EOL;
439439
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
440440

441441
return $report;

test/Api/SmsApiTest.php

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<?php
2+
3+
/**
4+
* SmsApiTest
5+
* PHP version 8.1
6+
*
7+
* @category Class
8+
* @package UBill\Sdk
9+
* @author OpenAPI Generator team
10+
* @link https://openapi-generator.tech
11+
*/
12+
13+
/**
14+
* UBill API
15+
*
16+
* UBill API - provides programmatic access to our resources. You will be able to integrate our service into your system and communicate with clients easily.
17+
*
18+
* The version of the OpenAPI document: 2.1.8
19+
* Contact: [email protected]
20+
* Generated by: https://openapi-generator.tech
21+
* Generator version: 7.13.0
22+
*/
23+
24+
/**
25+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
26+
* https://openapi-generator.tech
27+
* Please update the test case below to test the endpoint.
28+
*/
29+
30+
namespace UBill\Sdk\Test\Api;
31+
32+
use UBill\Sdk\Configuration;
33+
use UBill\Sdk\ApiException;
34+
use UBill\Sdk\ObjectSerializer;
35+
use PHPUnit\Framework\TestCase;
36+
37+
/**
38+
* SmsApiTest Class Doc Comment
39+
*
40+
* @category Class
41+
* @package UBill\Sdk
42+
* @author OpenAPI Generator team
43+
* @link https://openapi-generator.tech
44+
*/
45+
class SmsApiTest extends TestCase
46+
{
47+
/**
48+
* Setup before running any test cases
49+
*/
50+
public static function setUpBeforeClass(): void
51+
{
52+
}
53+
54+
/**
55+
* Setup before running each test case
56+
*/
57+
public function setUp(): void
58+
{
59+
}
60+
61+
/**
62+
* Clean up after running each test case
63+
*/
64+
public function tearDown(): void
65+
{
66+
}
67+
68+
/**
69+
* Clean up after running all test cases
70+
*/
71+
public static function tearDownAfterClass(): void
72+
{
73+
}
74+
75+
/**
76+
* Test case for createBrandName
77+
*
78+
* Create Brand Name.
79+
*
80+
*/
81+
public function testCreateBrandName()
82+
{
83+
// TODO: implement
84+
self::markTestIncomplete('Not implemented');
85+
}
86+
87+
/**
88+
* Test case for getDeliveryReport
89+
*
90+
* Get Delivery Report.
91+
*
92+
*/
93+
public function testGetDeliveryReport()
94+
{
95+
// TODO: implement
96+
self::markTestIncomplete('Not implemented');
97+
}
98+
99+
/**
100+
* Test case for getSMSBalance
101+
*
102+
* Get SMS Balance.
103+
*
104+
*/
105+
public function testGetSMSBalance()
106+
{
107+
// TODO: implement
108+
self::markTestIncomplete('Not implemented');
109+
}
110+
111+
/**
112+
* Test case for listBrandNames
113+
*
114+
* Get All Brand Names.
115+
*
116+
*/
117+
public function testListBrandNames()
118+
{
119+
// TODO: implement
120+
self::markTestIncomplete('Not implemented');
121+
}
122+
123+
/**
124+
* Test case for sendSMS
125+
*
126+
* Send SMS.
127+
*
128+
*/
129+
public function testSendSMS()
130+
{
131+
// TODO: implement
132+
self::markTestIncomplete('Not implemented');
133+
}
134+
}

test/Model/BaseResponseTest.php

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<?php
2+
3+
/**
4+
* BaseResponseTest
5+
*
6+
* PHP version 8.1
7+
*
8+
* @category Class
9+
* @package UBill\Sdk
10+
* @author OpenAPI Generator team
11+
* @link https://openapi-generator.tech
12+
*/
13+
14+
/**
15+
* UBill API
16+
*
17+
* UBill API - provides programmatic access to our resources. You will be able to integrate our service into your system and communicate with clients easily.
18+
*
19+
* The version of the OpenAPI document: 2.1.8
20+
* Contact: [email protected]
21+
* Generated by: https://openapi-generator.tech
22+
* Generator version: 7.13.0
23+
*/
24+
25+
/**
26+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
27+
* https://openapi-generator.tech
28+
* Please update the test case below to test the model.
29+
*/
30+
31+
namespace UBill\Sdk\Test\Model;
32+
33+
use PHPUnit\Framework\TestCase;
34+
35+
/**
36+
* BaseResponseTest Class Doc Comment
37+
*
38+
* @category Class
39+
* @description BaseResponse
40+
* @package UBill\Sdk
41+
* @author OpenAPI Generator team
42+
* @link https://openapi-generator.tech
43+
*/
44+
class BaseResponseTest extends TestCase
45+
{
46+
/**
47+
* Setup before running any test case
48+
*/
49+
public static function setUpBeforeClass(): void
50+
{
51+
}
52+
53+
/**
54+
* Setup before running each test case
55+
*/
56+
public function setUp(): void
57+
{
58+
}
59+
60+
/**
61+
* Clean up after running each test case
62+
*/
63+
public function tearDown(): void
64+
{
65+
}
66+
67+
/**
68+
* Clean up after running all test cases
69+
*/
70+
public static function tearDownAfterClass(): void
71+
{
72+
}
73+
74+
/**
75+
* Test "BaseResponse"
76+
*/
77+
public function testBaseResponse()
78+
{
79+
// TODO: implement
80+
self::markTestIncomplete('Not implemented');
81+
}
82+
83+
/**
84+
* Test attribute "statusID"
85+
*/
86+
public function testPropertyStatusID()
87+
{
88+
// TODO: implement
89+
self::markTestIncomplete('Not implemented');
90+
}
91+
92+
/**
93+
* Test attribute "message"
94+
*/
95+
public function testPropertyMessage()
96+
{
97+
// TODO: implement
98+
self::markTestIncomplete('Not implemented');
99+
}
100+
}

0 commit comments

Comments
 (0)