dongyu5104 2012-01-09 15:47
浏览 32

Kohana 3.14在单元测试时失败,未找到消息类'Kohana'

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!

  • 写回答

2条回答 默认 最新

  • dongqianwei6664 2012-01-09 18:13
    关注

    Seems like you have your own unittests without loading Kohana core class. Use native Unittest module as described here.

    评论

报告相同问题?