Changeset 16709
- Timestamp:
- 03/25/19 16:49:53 (6 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Tests merged: 16703
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests/HeuristicLab-3.3/ContentViewTests.cs
r15584 r16709 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.MainForm; 26 using HeuristicLab.MainForm.WindowsForms;27 26 using HeuristicLab.PluginInfrastructure; 28 27 using Microsoft.VisualStudio.TestTools.UnitTesting; … … 38 37 //get all non-generic and instantiable classes which implement IContentView 39 38 foreach (Type viewType in ApplicationManager.Manager.GetTypes(typeof(IContentView))) { 39 // jkarder: skip this test for the SymbolicDataAnalysisModelMathView (and for views that derive from it) 40 // reason: our new build agent cannot create an instance of this view due to the use of System.Windows.Forms.WebBrowser 41 if (typeof(HeuristicLab.Problems.DataAnalysis.Symbolic.Views.SymbolicDataAnalysisModelMathView).IsAssignableFrom(viewType)) 42 continue; 43 40 44 //get all ContentAttributes on the instantiable view 41 45 foreach (ContentAttribute attribute in viewType.GetCustomAttributes(typeof(ContentAttribute), false).Cast<ContentAttribute>()) { … … 48 52 try { 49 53 accessor.Invoke("OnContentChanged"); 50 } 51 catch (Exception ex) { 54 } catch (Exception ex) { 52 55 Assert.Fail(viewType.ToString() + Environment.NewLine + ex.Message); 53 56 } -
stable/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r16438 r16709 295 295 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4"> 296 296 <HintPath>..\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4.dll</HintPath> 297 <Private>False</Private> 298 </Reference> 299 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 300 <SpecificVersion>False</SpecificVersion> 301 <HintPath>..\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.dll</HintPath> 297 302 <Private>False</Private> 298 303 </Reference>
Note: See TracChangeset
for help on using the changeset viewer.