Exemplo n.º 1
0
        public void Background()
        {
            TrackedCommandHandler.Reset();

            Server = TestServer.Create(app =>
            {
                app.UseSequin(Options ?? new SequinOptions());
            });
        }
Exemplo n.º 2
0
        public void Background()
        {
            TrackedCommandHandler.Reset();

            Server = TestServer.Create(app =>
            {
                if (Options != null)
                {
                    app.UseSequin((HttpOptions)Options);
                }
                else
                {
                    app.UseSequin();
                }
            });
        }
Exemplo n.º 3
0
 public void Background()
 {
     TrackedCommandHandler.Reset();
 }