Lucas
Lucas

Reputation: 11

PHP - Simpletest - How to test "included" classes

I have de follow code:

include 'simpletest/autorun.php';
include 'config_test.case.php'; // <-- problem

But it not works. I get:

Bad TestSuite [index.php] with error [No runnable test cases in [index.php]]

But if I put the Config class code directly (no "include"), it works. What can I do? Thx =)

Upvotes: 1

Views: 826

Answers (1)

niggles
niggles

Reputation: 1034

Ensure you have the correct path to your test cases.

I also use the PHP autoLoader() function to auto-magically resolve my own class paths so they don't need to be inclcuded in the paths.

Upvotes: 2

Related Questions