(tt *testing.T)
| 25696 | } |
| 25697 | |
| 25698 | func TestKey_GetKey(tt *testing.T) { |
| 25699 | tt.Parallel() |
| 25700 | var zeroValue string |
| 25701 | k := &Key{Key: &zeroValue} |
| 25702 | k.GetKey() |
| 25703 | k = &Key{} |
| 25704 | k.GetKey() |
| 25705 | k = nil |
| 25706 | k.GetKey() |
| 25707 | } |
| 25708 | |
| 25709 | func TestKey_GetLastUsed(tt *testing.T) { |
| 25710 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…