add tests for rest-user-api

This commit is contained in:
GotPPay
2018-09-04 09:31:35 +02:00
committed by Bilal Catic
parent b3cff5d095
commit b974eab225

View File

@@ -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);
}
}