Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在使用 Play Framework(2.3.0,Java)进行单元测试期间访问配置值。有没有办法做到这一点 ?
解决方案是提供一个 FakeApplication (当然......)例如,通过包装类 WithApplication :
WithApplication app = new WithApplication(); app.startPlay(); Configuration.root().getString(key); app.stopPlay();