You could use the Set-NetworkAdapter cmdlet on the VMs you want to include in the tests.
To disable (disconnect) the vNIC you could do
Get-VM-NameMyVM|Get-NetworkAdapter|Set-NetworkAdapter-Connected:$false
Would that serve the purpose of your tests ?