Changeset 7353 for trunk/sources
- Timestamp:
- 01/18/12 02:34:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab.PluginInfraStructure-3.3/InstallationManagerTest.cs
r7259 r7353 21 21 22 22 using System; 23 using System.Linq;24 23 using HeuristicLab.PluginInfrastructure.Advanced; 25 24 using Microsoft.VisualStudio.TestTools.UnitTesting; … … 91 90 InstallationManager target = new InstallationManager(pluginDir); 92 91 var pluginList = target.GetRemotePluginList(); 93 Assert.IsTrue(pluginList .Count() > 0);92 Assert.IsTrue(pluginList != null); 94 93 } 95 94 catch (Exception e) { … … 107 106 InstallationManager target = new InstallationManager(pluginDir); 108 107 var productList = target.GetRemoteProductList(); 109 Assert.IsTrue(productList .Count() > 0);108 Assert.IsTrue(productList != null); 110 109 } 111 110 catch (Exception e) {
Note: See TracChangeset
for help on using the changeset viewer.