You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/e2e/authenticate_test.go

16 lines
330 B

// +build integration
package e2e
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAuthenticate(t *testing.T) {
t.Run(boundary+" "+"authenticate", func(t *testing.T) {
assert.NotEmpty(t, login(t, tcLoginName, tcPassword, tcPAUM), "must be able to authenticate with default username and password")
})
}