(tt *testing.T)
| 25729 | } |
| 25730 | |
| 25731 | func TestKey_GetTitle(tt *testing.T) { |
| 25732 | tt.Parallel() |
| 25733 | var zeroValue string |
| 25734 | k := &Key{Title: &zeroValue} |
| 25735 | k.GetTitle() |
| 25736 | k = &Key{} |
| 25737 | k.GetTitle() |
| 25738 | k = nil |
| 25739 | k.GetTitle() |
| 25740 | } |
| 25741 | |
| 25742 | func TestKey_GetURL(tt *testing.T) { |
| 25743 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…