Closed sergebug closed 9 years ago
This is a SLIM test. DoFixture and Symbols are part of the Fit test system.
Ok. Is there any way to access symbols in SLIM? We just started moving from fit to slim. That is why we continue using do fixtures. Slim had been great so far as it can easily work with fit fixtures. This Symbol weird case was the only exception. The reason I don't want to use cell handlers is because I need make conversion on demand.
I don't know of a way to access symbols via code with Slim.
Consider this work item to be change request then ;) In the meantime ... any suggestions for an alternative are wellcome.
Don't use Slim?! :)
Hi,
I'm very much confused between Fit and Slim. I read everywhere people saying new users should go for slim, but many times themselves say they've not switched yet. I fear that slim is not yet fully ready.
For example, I've been looking for this exact feature => how do I programmatically access to the symbols with slim? => here the answer is clearly not possible. The ClearSymbols fixture is only available in the fit implementation.
The good thing with slim is that it is "active" and easy to port, but why should it be better for me ? I have the feeling fit is easy enough with fitSharp (and thanks for it by the way!).
Slim has a simplified execution model, intended to make it easy to port, but it means it is less powerful than native Fit implementations. Slim is intended to be language-independent, but the core Slim engine is written in Java and it tends to work better with Java than other platforms. Slim is popular with Java users but not widely used outside of Java.
Hi, thanks a lot for this answer, it is very useful to me and confirms that I should stick with fit for my needs. I'll keep an eye on slim anyway. Thanks again for your work.
According to the SymbolValues.html Following code could be used to access Symbols:
However when I try to use code from above inside my fixture I get exceptions in the test response.
My Fixture class looks as following:
FitNesse table to call the fixture looks as following:
Initially I tried to use Recall method (commented out) but that resulted in null reference exception. AFAIK the processor value is null. Tried both slim and fit and nothing worked so far.