//Run Test sets in constructor
 public TestManager()
 {
     InitializeSystemUnderTest SUT = new InitializeSystemUnderTest(exeLocation, workingDirectory);
     Login loginText = new Login(SUT.application);
 }
        private void createSUT()
        {
            InitializeSystemUnderTest SUT = new InitializeSystemUnderTest(exeLocation, workingDirectory);

            _application = SUT.application;
        }