Changeset 7460 for branches/HeuristicLab.TimeSeries/HeuristicLab.Tests/HeuristicLab.PluginInfraStructure-3.3/InstallationManagerTest.cs
- Timestamp:
- 02/06/12 17:50:17 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
- Property svn:ignore
-
old new 3 3 *.resharper 4 4 *.suo 5 *.user 5 6 *.vsp 6 7 Doxygen 8 FxCopResults.txt 7 9 Google.ProtocolBuffers-0.9.1.dll 8 10 HeuristicLab 3.3.5.1.ReSharper.user
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests merged: 7294,7353,7397,7442,7450
- Property svn:mergeinfo changed
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Tests/HeuristicLab.PluginInfraStructure-3.3/InstallationManagerTest.cs
r7268 r7460 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.