public void Test_CompileScripts()
        {
            var script = GetDummyScript();

            var scriptPath = CreateScriptFile();

            var scriptCompiler = new ScriptCompiler();

            scriptCompiler.CompileAll();

            var assemblyFile = scriptCompiler.FileNamer.GetScriptAssemblyPath("HelloWorld");

            Assert.IsTrue(File.Exists(assemblyFile), "Assembly file not found.");
        }