File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
/**
* Nos Adaptamos RGPD Admin Tests.
*
* @since 0.0.0
* @package Nos_Adaptamos_RGPD
*/
class ARGPD_Admin_Test extends WP_UnitTestCase {
/**
* Test if our class exists.
*
* @since 0.0.0
*/
function test_class_exists() {
$this->assertTrue( class_exists( 'ARGPD_Admin' ) );
}
/**
* Test that we can access our class through our helper function.
*
* @since 0.0.0
*/
function test_class_access() {
$this->assertInstanceOf( 'ARGPD_Admin', adaptargpd()->admin );
}
/**
* Replace this with some actual testing code.
*
* @since 0.0.0
*/
function test_sample() {
$this->assertTrue( true );
}
}
