1
0
Fork 0
golang-forgejo-f3-gof3/tree/tests/f3/forge_test.go

20 lines
383 B
Go
Raw Permalink Normal View History

// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT
package f3
import (
"testing"
tests_forge "code.forgejo.org/f3/gof3/v3/tree/tests/f3/forge"
)
func TestF3Forge(t *testing.T) {
for name := range tests_forge.GetFactories() {
t.Run(name, func(t *testing.T) {
ForgeCompliance(t, name)
})
}
}