我在 Eclipse 3.6 上安装了 visualforce 插件并且工作正常,除了 system.debug 不输出任何东西。
代码
static testMethod void testMonth() {
Month m = new Month(system.today());
system.debug('foobar');
system.debug(m.firstDate);
}
步
在eclipse中,右键选择Force.com
弹出窗口,选择run test
测试通过,但我期待调试输出出现。(即 foobar 和日期字符串)但什么也没有出现。
有什么我可能需要打开或丢失的吗?
我的 Eclipse 是 Java 版本。我也尝试过使用 Visualforce IDE 版本 20 的 PHP 开发版,但没有运气。
还尝试了visual force IDE独立版本,这也没有显示日志。