add tests for rest-user-api
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* Wiaas_Delivery_Process_Step_Test
|
||||
*
|
||||
* @package Wiaas
|
||||
*/
|
||||
|
||||
class Wiass_REST_User_Api_Test extends Wiaas_Unit_Test_Case {
|
||||
|
||||
function setUp() {
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers Wiass_REST_User_API::validate_token
|
||||
*/
|
||||
function test_validate_token() {
|
||||
wp_set_current_user(1);
|
||||
|
||||
$this->assertTrue(false);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers Wiass_REST_User_API::get_countries
|
||||
*/
|
||||
function test_get_countries() {
|
||||
wp_set_current_user(1);
|
||||
|
||||
$this->assertTrue(false);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user