fitnesse

Fitnesse Slim: How to concatenate symbol

匿名 (未验证) 提交于 2019-12-03 01:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: How would one concatenate a symbol with text on either side? For example: Prefix: "GAR_" Variable: $todayDate Suffix: "_1" GAR_$todayDate_1 Which would evaluate to: GAR_07202012_1 When running the test in fitnesse, it seems as though the concatenation is working ( GAR_$todayDate->[07202012]_1 ). However, I am passing this value as a parameter to visual studio and I instead end up with the following text: GAR_$todayDate_1 . When I remove the suffix or put a space between $todayDate and "_1" , everything works as expected. Any help would be

FitNesse App.Config

懵懂的女人 提交于 2019-12-02 13:28:44
问题 I am having a hard time understanding: http://www.syterra.com/Fit/AppConfigFiles.html If my application and fixtures are in c:\Projects\App and FitNesse is running from c:\Projects\Sandbox\FitNesse I am assuming c:\mypath\myapp.exe.config would be c:\Projects\App[MyFixtureAssmbly].config, but I am unsure of what c:\myfolder\mysuite.config.xml is? I have tried putting it in the fitSharp folder with Runner.exe.config, fit.dll.config, with .xml after those names, in the FitNesse root folder, in

FitNesse App.Config

匆匆过客 提交于 2019-12-02 04:47:53
I am having a hard time understanding: http://www.syterra.com/Fit/AppConfigFiles.html If my application and fixtures are in c:\Projects\App and FitNesse is running from c:\Projects\Sandbox\FitNesse I am assuming c:\mypath\myapp.exe.config would be c:\Projects\App[MyFixtureAssmbly].config, but I am unsure of what c:\myfolder\mysuite.config.xml is? I have tried putting it in the fitSharp folder with Runner.exe.config, fit.dll.config, with .xml after those names, in the FitNesse root folder, in the App directory.. I just can't figure out where to put it so it will load my app.config? In the

Are BDD tests acceptance tests?

好久不见. 提交于 2019-11-30 10:05:58
问题 Do you need something like Fitnesse , if you have BDD tests? 回答1: BDD "tests" exist at multiple different levels of granularity, all the way up to the initial project vision. Most people know about the scenarios. A few people remember that BDD started off with the word "should" as a replacement for JUnit's "test" - as a replacement for TDD. The reason I put "tests" in quotes is because BDD isn't really about testing; it's focused on finding the places where there's a lack or mismatch of

FitNesse for Delphi 2006 / Delphi 2007 /Delphi 2009

♀尐吖头ヾ 提交于 2019-11-30 10:00:47
Is there a version of FitNesse that works on Delphi 2006/2007/2009? If so where can I find It? Are there any other programs like FitNesse that work on Delphi 2006? Fitnesse has support for Delphi. See the FitServers page at fitnesse.org. EDIT: The Delphi fit server at delphixtreme now works The code is saved here 来源: https://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009

How can I expire all my sessions in Tomcat?

怎甘沉沦 提交于 2019-11-30 09:11:04
I would like to expire all my sessions in Tomcat. We test our product under Fitnesse and some sessions remain and the end of the session causes dependency between the tests. I do it by hand with the following code, but some sessions remain (I can check it with the http://localhost:8080/manager/html/list url) public static void expireAllSessions() { String[] applications = { "a", "b", "c", "d", "e" }; for (String application : applications) { try { expireAllSessions(application); } catch (Exception e) { logger.error(e); } } } private static void expireAllSessions(final String application)

How do I setup FitNesse for use with .NET?

给你一囗甜甜゛ 提交于 2019-11-30 02:58:54
I'm trying to get started with FitNesse for .NET on Windows Vista. In all tutorials I find on the web I'm told to execute the run.bat file, but all i get when downloading the latest release is a .jar-file. When i run this, the filestructure is unpacked and I can reach the fitnesse server by browsing to http://localhost . Now, when I'm trying to set up a test project, according to all documentation I find I'm supposed define the path to fitsharp.dll but I can't find this file anywhere in the filestructure that was set up from the .jar-file. What am I doing wrong? Download FitNesse jar from http

How do I add fitnesse pages to version-control?

自作多情 提交于 2019-11-29 20:37:32
What is the recommended practice? Should I add the my sub-folder under the fitnesse folder to version control? Context: working on a single developer rails pet project. I've my rails project under version-control (Subversion) however my fitnesse wiki pages lie under the fitnesse program folder. Fitnesse seems to have its own version-control... (I see numbered zips along with each of my wiki pages) Is it reliable? Where does it store the revisions? Use the -d switch ( which is surprisingly low profile on a google search ) Fitnesse20081201>run -p 8080 -d c:/projects/MyProjectNeedsAcceptanceTests

Are BDD tests acceptance tests?

霸气de小男生 提交于 2019-11-29 18:47:34
Do you need something like Fitnesse , if you have BDD tests? BDD "tests" exist at multiple different levels of granularity, all the way up to the initial project vision. Most people know about the scenarios. A few people remember that BDD started off with the word "should" as a replacement for JUnit's "test" - as a replacement for TDD. The reason I put "tests" in quotes is because BDD isn't really about testing; it's focused on finding the places where there's a lack or mismatch of understanding. Because of that focus, the conversations are much more important than the BDD tools. I'm going to

FitNesse for Delphi 2006 / Delphi 2007 /Delphi 2009

妖精的绣舞 提交于 2019-11-29 15:08:31
问题 Is there a version of FitNesse that works on Delphi 2006/2007/2009? If so where can I find It? Are there any other programs like FitNesse that work on Delphi 2006? 回答1: Fitnesse has support for Delphi. See the FitServers page at fitnesse.org. 回答2: EDIT: The Delphi fit server at delphixtreme now works The code is saved here 来源: https://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009