public static void Initialize(TestContext context)
        {
            testHelpers    = new TestHelpers();
            bandController = new BandController();

            testHelpers.ClearData();
            testHelpers.InsertTestData();
        }
Exemplo n.º 2
0
        public static void Initialize(TestContext context)
        {
            testHelpers           = new TestHelpers();
            applicationController = new ApplicationController();
            bandController        = new BandController();
            userController        = new UserController();
            db = new ModelsDB.BandItEntities();
            applicationAccess = new ApplicationAccess();

            testHelpers.ClearData();
            testHelpers.InsertTestData();
        }
Exemplo n.º 3
0
 public BandController()
 {
     bandController = new BandControllerLogic();
 }