Files
lattigo/examples/he/hefloat/tutorial/main_test.go
Jean-Philippe Bossuat 0e59fa48dd refactored the library
2023-11-04 02:24:29 +01:00

11 lines
132 B
Go

package main
import "testing"
func TestMain(t *testing.T) {
if testing.Short() {
t.Skip("skipped in -short mode")
}
main()
}