1
0
Fork 0
gilo/editor/document_test.go

36 lines
531 B
Go

package editor
import "testing"
func TestNewDocument(t *testing.T) {
d := newDocument()
if d == nil {
t.Errorf("Failed to create document")
}
}
func TestAppendRow(t *testing.T) {
d := newDocument()
d.appendRow("Test Row")
got := len(d.rows)
want := 1
if got != want {
t.Errorf("Failed to add a row to the document")
}
}
func TestRowCount(t *testing.T) {
d := newDocument()
d.appendRow("Test Row")
got := d.rowCount()
want := 1
if got != want {
t.Errorf("Expected %d rows, got %d rows", want, got)
}
}