You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devices/videosink/display_test.go

16 lines
371 B
Go

// Copyright 2021 The Periph Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
package videosink
import "testing"
func TestNewHalt(t *testing.T) {
d := New(&Options{Width: 100, Height: 100})
if err := d.Halt(); err != nil {
t.Errorf("Halt() failed: %v", err)
}
}