summaryrefslogtreecommitdiff
path: root/vendor/github.com/gotk3/gotk3/gtk/actionable_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gotk3/gotk3/gtk/actionable_test.go')
-rw-r--r--vendor/github.com/gotk3/gotk3/gtk/actionable_test.go35
1 files changed, 35 insertions, 0 deletions
diff --git a/vendor/github.com/gotk3/gotk3/gtk/actionable_test.go b/vendor/github.com/gotk3/gotk3/gtk/actionable_test.go
new file mode 100644
index 0000000..5a572a9
--- /dev/null
+++ b/vendor/github.com/gotk3/gotk3/gtk/actionable_test.go
@@ -0,0 +1,35 @@
+package gtk
+
+import "testing"
+
+func TestActionableImplementsIActionable(t *testing.T) {
+ var cut interface{}
+ cut = &Actionable{}
+ _, ok := cut.(IActionable)
+
+ if !ok {
+ t.Error("Actionable does not implement IActionable")
+ return
+ }
+}
+
+// TestGetSetActionName tests the getter and setter for action name
+// using a button, as we need an actual instance implementing Actionable.
+func TestGetSetActionName(t *testing.T) {
+ cut, err := ButtonNew()
+ if err != nil {
+ t.Fatal("Error creating button", err.Error())
+ }
+
+ expected := "app.stuff"
+ cut.SetActionName(expected)
+
+ actual, err := cut.GetActionName()
+ if err != nil {
+ t.Fatal("Error getting action name", err.Error())
+ }
+
+ if expected != actual {
+ t.Fatalf("Expected %s got %s", expected, actual)
+ }
+}