- Timestamp:
- 09/24/10 10:27:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Tests/ContentViewTests.cs
r4068 r4483 1 1 using System; 2 2 using System.Linq; 3 using HeuristicLab.Common;4 3 using HeuristicLab.MainForm.WindowsForms; 5 4 using HeuristicLab.PluginInfrastructure; 6 5 using Microsoft.VisualStudio.TestTools.UnitTesting; 6 using HeuristicLab.Common; 7 7 8 8 namespace HeuristicLab.MainForm.WindowsForms_3._3.Tests { … … 83 83 IContentView view = (IContentView)Activator.CreateInstance(viewType); 84 84 ContentView_Accessor accessor = new ContentView_Accessor(new PrivateObject(view)); 85 accessor.OnContentChanged(); 85 try { 86 accessor.OnContentChanged(); 87 } 88 catch (Exception ex) { 89 Assert.Fail(viewType.ToString() + Environment.NewLine + ex.Message); 90 } 86 91 } 87 92 }
Note: See TracChangeset
for help on using the changeset viewer.