1package libkb
2
3import "testing"
4
5func TestTrackCacheShutdown(t *testing.T) {
6	tc := NewTrackCache()
7	tc.Shutdown()
8	tc.Shutdown()
9}
10