Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Tests/InterpreterTest.cs @ 14328

Last change on this file since 14328 was 14328, checked in by pkimmesw, 8 years ago

#2665 Set .NET version to 4.5, C# version to 5.0, Added expression templates and factory

File size: 379 bytes
Line 
1using HeuristicLab.Algorithms.PushGP.Interpreter;
2using Microsoft.VisualStudio.TestTools.UnitTesting;
3
4namespace HeuristicLab.Tests
5{
6    public class InterpreterTest
7    {
8        protected PushGPInterpreter interpreter;
9
10        [TestInitialize]
11        public void BeforeTest()
12        {
13            interpreter = new PushGPInterpreter();
14        }
15    }
16}
Note: See TracBrowser for help on using the repository browser.