Skip to content

Commit

Permalink
add description
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin8105 committed Apr 27, 2021
1 parent 14ed525 commit 51000f8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions bolt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"testing"

bolt "github.com/Konstantin8105/Eurocode3.Bolt"
"github.com/Konstantin8105/description"
)

func TestBoltClass(t *testing.T) {
Expand Down Expand Up @@ -121,3 +122,15 @@ func TestCases(t *testing.T) {
}
}
}

func TestDescription(t *testing.T) {
descr, err := description.New(".")
if err != nil {
t.Fatal(err)
}
rep, err := descr.Report()
if err != nil {
t.Fatal(err)
}
t.Logf("%s", rep)
}
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
module github.com/Konstantin8105/Eurocode3.Bolt

go 1.14

require github.com/Konstantin8105/description v0.0.0-20210427161416-05166f50b107 // indirect

0 comments on commit 51000f8

Please sign in to comment.