Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
smsapi
/
api_sdk
/
tests
/
Core
/
Regions
:
EndpointProviderTest.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Aliyun\Test\Core\Profile; use PHPUnit\Framework\TestCase; use Aliyun\Core\Regions\EndpointProvider; use Aliyun\Core\Config; class EndpointProviderTest extends TestCase { public function setUp() { Config::load(); } public function testFindProductDomain() { $this->assertEquals("ecs-cn-hangzhou.aliyuncs.com",EndpointProvider::findProductDomain("cn-hangzhou", "Ecs")); } }