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.
最近我遇到了这个问题并且已经搜索了很多但现在没有解决方案。有人知道我如何在 FitSharp 夹具代码中获取 FitNesse 的根目录或页面文件夹吗?麻烦之一是我们有很多现有页面排列在不同的套件中,我想为所有这些需要 FitNesse 文件夹绝对路径的页面添加一些新功能。在页面中使用固定装置和环境参数可能需要付出很多努力。例如,我什至试图在 app.config 中使用硬配置!
提前非常感谢!期待您亲切的回答。
根路径可用作 FitNesse 预定义变量。将其传递到可以将其作为属性公开的夹具中。这可以进入设置页面。
|rootpath| |load|${FITNESSE_ROOTPATH}| public class RootPath { public static string Path; public void Load(string value) { Path = value;} }