namespace VideoBrowserTestApp.Tests { using System.Windows; using VideoBrowser.ViewModels; using VideoBrowser.Views; using VideoBrowserTestApp.Helpers; /// /// Defines the . /// public class AboutViewTest : TestBase { #region Constructors /// /// Initializes a new instance of the class. /// public AboutViewTest() : base(nameof(AboutView)) { } #endregion Constructors #region Methods /// /// The Test. /// /// The testWindow. protected override void Test(Window testWindow) { var viewModel = new AboutViewModel(); var view = new AboutView { DataContext = viewModel }; WindowFactory.CreateAndShow(view, testWindow); } #endregion Methods } }