Ejemplo n.º 1
0
        public void MethodUnderTest_Scenario_ExpectedBehavior()
        {
            var collection = new ArgumentTypeCollection();
            collection.Add<string>();

            collection.Single().ShouldEqual(typeof(string));
        }
Ejemplo n.º 2
0
        public void MethodUnderTest_Scenario_ExpectedBehavior()
        {
            var collection = new ArgumentTypeCollection();

            collection.Add <string>();

            collection.Single().ShouldEqual(typeof(string));
        }
Ejemplo n.º 3
0
 public RoomieEngine()
 {
     _engineState = EngineState.New;
     GlobalScope = new HierarchicalVariableScope();
     DataStore = new DataStore();
     StreamStore = new SafeWritingStreamStore(new BasicStreamStore());
     ThreadPools = new List<ThreadPool>();
     Threads = CreateThreadPool("Root Threads");
     CommandLibrary = new RoomieCommandLibrary();
     CommandLibrary.Message += CommandLibrary_Message;
     PrintCommandCalls = false;
     DevelopmentEnvironment = Environment.CurrentDirectory.EndsWith(@"\bin\Debug");
     ArgumentTypes = new ArgumentTypeCollection();
 }