public async Task TestCreateAppBundleAsync_CreatesTargetStageDirectory()
        {
            await _objectUnderTest.CreateAppBundleAsync(
                Mock.Of <IParsedProject>(),
                ExpectedStagingDirectoryPath,
                _defaultOutputAction,
                DefaultConfiguration);

            _fileSystemMock.Verify(fs => fs.Directory.CreateDirectory(ExpectedStagingDirectoryPath));
        }