public void Should_auto_create_folders()
        {
            var          path            = GetNewEmptyPathThatExists();
            const string reportsName     = "Reports";
            const string datasourcesName = "Datasources";
            const string actionsName     = "Actions";

            var bs = new ProjectBootStrapper(path, reportsName, datasourcesName, actionsName);

            bs.CreateFoldersIfNeeded();

            Directory.Exists(Path.Combine(path, reportsName)).Should().BeTrue();
            Directory.Exists(Path.Combine(path, datasourcesName)).Should().BeTrue();
            Directory.Exists(Path.Combine(path, actionsName)).Should().BeTrue();
        }