mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-05-18 19:13:27 +02:00
12 lines
276 B
Go
12 lines
276 B
Go
package util
|
|
|
|
import "testing"
|
|
|
|
// not a real test... used o run copy to clipboard without a main package
|
|
func TestCopyToClipboard(t *testing.T) {
|
|
err := CopyToClipboard("asdfqwert")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error while running CopyToClipboard: %w", err)
|
|
}
|
|
}
|