Files
wonderwall/pkg/session/data_test.go
2022-08-29 08:35:03 +02:00

46 lines
629 B
Go

package session_test
import (
"testing"
)
func TestData_HasAccessToken(t *testing.T) {
// TODO
}
func TestData_HasRefreshToken(t *testing.T) {
// TODO
}
func TestMetadata_IsExpired(t *testing.T) {
// TODO
}
func TestMetadata_IsRefreshOnCooldown(t *testing.T) {
// TODO
}
func TestMetadata_NextRefresh(t *testing.T) {
// TODO
}
func TestMetadata_Refresh(t *testing.T) {
// TODO
}
func TestMetadata_RefreshCooldown(t *testing.T) {
// TODO
}
func TestMetadata_ShouldRefresh(t *testing.T) {
// TODO
}
func TestMetadata_TokenLifetime(t *testing.T) {
// TODO
}
func TestMetadata_Verbose(t *testing.T) {
// TODO
}