Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8560


Ignore:
Timestamp:
09/03/12 16:18:50 (12 years ago)
Author:
gkronber
Message:

#1890: fixed a bug in the InstantiateAllCreatables unit test. Only a part of all assemblies has been by the unit test up to now as the assembly loading statement has been missing.

(also updated the project reference for alglib to version 3.6.0)

Location:
trunk/sources/HeuristicLab.Tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/InstantiateCreatablesTest.cs

    r8547 r8560  
    2828
    2929namespace HeuristicLab_33.Tests {
     30
    3031  [TestClass]
    3132  public class InstantiateCreatablesTest {
     33    // Use ClassInitialize to run code before running the first test in the class
     34    [ClassInitialize]
     35    public static void MyClassInitialize(TestContext testContext) {
     36      PluginLoader.Assemblies.Any();
     37    }
    3238    [TestMethod]
    3339    public void InstantiateAllCreatables() {
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Tests.csproj

    r8463 r8560  
    102102  </PropertyGroup>
    103103  <ItemGroup>
    104     <Reference Include="ALGLIB-3.5.0, Version=3.5.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    105       <HintPath>..\bin\ALGLIB-3.5.0.dll</HintPath>
     104    <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     105      <HintPath>..\bin\ALGLIB-3.6.0.dll</HintPath>
    106106    </Reference>
    107107    <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
Note: See TracChangeset for help on using the changeset viewer.