Codebase list golang-github-renekroon-ttlcache / 4a70cb1c-5940-4d39-a85b-1faaba5704d2/main evictionreason_enumer_test.go
4a70cb1c-5940-4d39-a85b-1faaba5704d2/main

Tree @4a70cb1c-5940-4d39-a85b-1faaba5704d2/main (Download .tar.gz)

evictionreason_enumer_test.go @4a70cb1c-5940-4d39-a85b-1faaba5704d2/main

8af4104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package ttlcache

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestError(t *testing.T) {
	assert.Equal(t, "key not found", ErrNotFound.Error())

}

func TestEvictionError(t *testing.T) {
	assert.Equal(t, "Removed", Removed.String())
	assert.Equal(t, "Expired", Expired.String())

}