Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Tests/HeuristicLab.Scripting-3.3/ScriptingUtils.cs @ 11677

Last change on this file since 11677 was 11677, checked in by pfleck, 9 years ago

#2269 Merged trunk. Updated .net version of ALPS plugin.

File size: 2.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.IO;
24using System.Threading;
25using HeuristicLab.Scripting;
26using Microsoft.VisualStudio.TestTools.UnitTesting;
27
28namespace HeuristicLab.Tests {
29  public static class ScriptingUtils {
30    public const string ScriptsDirectory = @"Scripts\";
31    public const string ScriptSourcesDirectory = @"Test Resources\Script Sources\";
32    public const string ScriptFileExtension = ".hl";
33    public const string ScriptSourceFileExtension = ".cs";
34
35    public static void RunScript(CSharpScript s) {
36      var trigger = new EventWaitHandle(false, EventResetMode.ManualReset);
37      Exception ex = null;
38
39      s.ScriptExecutionFinished += (sender, e) => { ex = e.Value; trigger.Set(); };
40      s.Execute();
41      trigger.WaitOne();
42
43      Assert.IsNull(ex);
44    }
45
46    public static T GetVariable<T>(CSharpScript a, string resultName) {
47      return (T)a.VariableStore[resultName];
48    }
49
50    public static string LoadScriptCodeFromFile(string scriptName) {
51      string path = Path.Combine(ScriptSourcesDirectory, scriptName + ScriptSourceFileExtension);
52      return File.ReadAllText(path);
53    }
54  }
55}
Note: See TracBrowser for help on using the repository browser.