Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
259 views

For reliable code, NModel, Spec Explorer, F# or other?

I've got a business app in C#, with unit tests. Can I increase the reliability and cut down on my testing time and expense by using NModel or Spec Explorer? Alternately, if I were to rewrite it in ...
0
votes
0answers
19 views

Spec Explorer or NModel (MBT) Modeling Best Practices

Is it better to use Enums and simple value types in a single class for your model, or should you use multiple classes to manage your modeling state? What modeling approaches have worked best in your ...
0
votes
3answers
147 views

How to encapsulate state variables in NModel?

I have a model program that represents message flow along a chain of servers: public class MyModel { static bool x_send_msg1 = false; // has X sent msg1? static bool y_recv_msg1 = false; // ...