Files
goreplay/settings_test.go
T
Dima GolomozyandGitHub 40946831b9 goreplay-cli package (#1148)
change package from `main -> goreplay`
this will allow importing `goreplay` as a package
2023-01-12 18:24:45 +03:00

15 lines
180 B
Go

package goreplay
import (
"encoding/json"
"testing"
)
func TestAppSettings(t *testing.T) {
a := AppSettings{}
_, err := json.Marshal(&a)
if err != nil {
t.Error(err)
}
}