VBox.Tests.ps1

BeforeAll {
  . $PSCommandPath.Replace('.Tests.ps1', '.ps1')
}

Describe 'Get-VBoxHostOnlyAdpater' {
  It 'Get the Host Only Adapter' {
    $adapter = Get-VBoxHostOnlyAdpater
    $adapter | Should -Not -BeNullOrEmpty
    $adapter | Should -Be "VirtualBox Host-Only Ethernet Adapter"
  }
}