add unit testing

This commit is contained in:
info@mschuette.name 2014-05-26 13:35:17 +00:00
commit ec84f3d91b
8 changed files with 324 additions and 0 deletions

8
tests/test-wpsample.php Normal file
View file

@ -0,0 +1,8 @@
<?php
# all tests with WP integration
class SampleTest extends WP_UnitTestCase {
function test_sample() {
$this->assertTrue(true);
}
}