예제 #1
0
        static void Main(string[] args)
        {
            var application = new BuildServerApp();
            application.Start();

            System.Console.ReadKey();
            application.Stop();
        }
예제 #2
0
 public void CanCreateApplicationWithEmptyConstructor()
 {
     var application = new BuildServerApp();
     Assert.IsNotNull(application);
 }