public void ProfileShouldWork()
        {
            //initialize fresh log
            _testLogger.FullLog.Clear();
            var profilePath = Path.Join(TestUtils.FunctionDirectory, "ProfileBasic", "profile.ps1");
            _testManager.InvokeProfile(profilePath);

            Assert.Single(_testLogger.FullLog);
            Assert.Equal("Information: INFORMATION: Hello PROFILE", _testLogger.FullLog[0]);
        }