# Testing Code

# Example Pester test
Describe 'Device Name Validation' {
    It 'Should match naming schema' {
        $hostname = 'UCWLAP001'
        $hostname | Should -Match '^UCW(LAP|WKS)\d{3}$'
    }
}