public void ShouldAllowNullSearchModel()
        {
            var future = new FutureMock <StockDetailModel>();

            ConductStockTickerContent testee = this.CreateTestee(future);

            System.Action act = () => testee.Execute(new ActionExecutionContext());

            act.ShouldNotThrow();
        }