Reputation: 5228
I have a kohana website that works okay, and I started unit testing (retrospectively, I know it is not the best practice)
The first error I get and I cannot get rid of is quite puzzling:
Fatal error: Uncaught exception 'LogicException' with message 'Passed array does not specify an existing static method (class 'Kohana' not found)' in /Users/dananicula/Sites/mnib1/application/bootstrap.php:44
in bootstrap, line 44 is:
spl_autoload_register(array('Kohana', 'auto_load'));
and class Kohana actualy exists in system/classes/kohana.php
Any hints? Opinions? Suggestions? Thank you!
Upvotes: 1
Views: 492
Reputation: 5483
Seems like you have your own unittests without loading Kohana core class. Use native Unittest module as described here.
Upvotes: 1