@@ -3,6 +3,7 @@ package cell
import (
"github.com/gdamore/tcell"
+
"p78git.ddns.net/svi/libtui/alias"
"p78git.ddns.net/svi/libtui/pos"
"p78git.ddns.net/svi/libtui/types"
@@ -0,0 +1,22 @@
+package cell
+import "testing"
+/*
+ Тест для экранной ячейки
+*/
+type tester struct {
+ t *testing.T
+}
+func TestCell(t *testing.T) {
+ test := &tester{
+ t: t,
+ }
+ test.create()
+func (sf *tester) create() {
+ sf.t.Logf("create")