We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14ed525 commit 51000f8Copy full SHA for 51000f8
bolt_test.go
@@ -5,6 +5,7 @@ import (
5
"testing"
6
7
bolt "github.com/Konstantin8105/Eurocode3.Bolt"
8
+ "github.com/Konstantin8105/description"
9
)
10
11
func TestBoltClass(t *testing.T) {
@@ -121,3 +122,15 @@ func TestCases(t *testing.T) {
121
122
}
123
124
125
+
126
+func TestDescription(t *testing.T) {
127
+ descr, err := description.New(".")
128
+ if err != nil {
129
+ t.Fatal(err)
130
+ }
131
+ rep, err := descr.Report()
132
133
134
135
+ t.Logf("%s", rep)
136
+}
go.mod
@@ -1,3 +1,5 @@
1
module github.com/Konstantin8105/Eurocode3.Bolt
2
3
go 1.14
4
+require github.com/Konstantin8105/description v0.0.0-20210427161416-05166f50b107 // indirect
0 commit comments