File: System\Windows\Forms\CompilerServicesTests.vb
Web Access
Project: src\src\Microsoft.VisualBasic.Forms\tests\UnitTests\Microsoft.VisualBasic.Forms.Tests.vbproj (Microsoft.VisualBasic.Forms.Tests)
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
 
Option Strict Off
 
Imports System.Windows.Forms
Imports FluentAssertions
Imports Microsoft.VisualBasic.CompilerServices
Imports Xunit
 
Namespace Microsoft.VisualBasic.Forms.Tests
 
    Partial Public Class CompilerServicesTests
 
        <WinFormsFact>
        Public Sub TestVbHost_New_Success()
            Using vbHost As New TestVbHost
                vbHost.GetParentWindow.Should.NotBeNull()
                vbHost.GetParentWindow.Should.BeOfType(Of Control)()
                vbHost.GetWindowTitle.Should.Be(s_title)
            End Using
        End Sub
 
    End Class
End Namespace