(tt *testing.T)
| 40007 | } |
| 40008 | |
| 40009 | func TestRemoveToken_GetToken(tt *testing.T) { |
| 40010 | tt.Parallel() |
| 40011 | var zeroValue string |
| 40012 | r := &RemoveToken{Token: &zeroValue} |
| 40013 | r.GetToken() |
| 40014 | r = &RemoveToken{} |
| 40015 | r.GetToken() |
| 40016 | r = nil |
| 40017 | r.GetToken() |
| 40018 | } |
| 40019 | |
| 40020 | func TestRename_GetFrom(tt *testing.T) { |
| 40021 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…