// Copyright 2024 Matthew Rich . All rights reserved. package machine import ( "testing" ) func TestMachineState(t *testing.T) { s := NewState("connected") if s == nil { t.Errorf("Failed creating new state") } }