From 7eeb418c3a35df76486ad66efb1e8ce6c8d86577 Mon Sep 17 00:00:00 2001 From: vcaesar Date: Tue, 18 Feb 2020 12:37:13 -0400 Subject: [PATCH] add paste string test code --- robotgo_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/robotgo_test.go b/robotgo_test.go index ede3d70..69a7c4b 100644 --- a/robotgo_test.go +++ b/robotgo_test.go @@ -108,6 +108,9 @@ func TestKey(t *testing.T) { func TestTypeStr(t *testing.T) { c := CharCodeAt("s", 0) tt.Equal(t, 115, c) + + e := PasteStr("s") + tt.Empty(t, e) } func TestBitmap(t *testing.T) {