Gopher2600/hardware/television/television_test.go
JetSetIlly 63da4073d9 remove Television interface / renamed Reference to Television
the interface was becoming too large and was a remnant of a very early
development phase. the gui interface type has replaced that concept.
2020-10-23 15:35:39 +01:00

45 lines
1.3 KiB
Go

// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package television_test
import (
"testing"
"github.com/jetsetilly/gopher2600/hardware/television"
)
func TestNewTelevision(t *testing.T) {
tv, err := television.NewTelevision("PAL")
if tv == nil || err != nil {
t.Errorf("PAL spec creation failed")
}
tv, err = television.NewTelevision("NTSC")
if tv == nil || err != nil {
t.Errorf("NTSC spec creation failed")
}
tv, err = television.NewTelevision("AUTO")
if tv == nil || err != nil {
t.Errorf("AUTO spec creation failed")
}
tv, err = television.NewTelevision("FOO")
if tv != nil || err == nil {
t.Errorf("'FOO' spec creation unexpectedly succeeded")
}
}