Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7353


Ignore:
Timestamp:
01/18/12 02:34:24 (12 years ago)
Author:
swagner
Message:

Fixed PluginInfrastructure unit tests as all plugins and products have been deleted in the deployment DB due to compatibility issues (automatic update from HL 3.3.5 to HL 3.3.6 fails). (#1722)

File:
1 edited

Legend:

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

    r7259 r7353  
    2121
    2222using System;
    23 using System.Linq;
    2423using HeuristicLab.PluginInfrastructure.Advanced;
    2524using Microsoft.VisualStudio.TestTools.UnitTesting;
     
    9190        InstallationManager target = new InstallationManager(pluginDir);
    9291        var pluginList = target.GetRemotePluginList();
    93         Assert.IsTrue(pluginList.Count() > 0);
     92        Assert.IsTrue(pluginList != null);
    9493      }
    9594      catch (Exception e) {
     
    107106        InstallationManager target = new InstallationManager(pluginDir);
    108107        var productList = target.GetRemoteProductList();
    109         Assert.IsTrue(productList.Count() > 0);
     108        Assert.IsTrue(productList != null);
    110109      }
    111110      catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.