(t *testing.T)
| 724 | } |
| 725 | |
| 726 | func TestGetDefaultVersionList(t *testing.T) { |
| 727 | |
| 728 | // This test will ensure that the versions.yaml file is well-formed and doesn't break anything. |
| 729 | defaultVersions, defaultTargetVersions, err := GetDefaultVersionList(testVersionsFile) |
| 730 | assert.NoError(t, err) |
| 731 | assert.NotNil(t, defaultVersions) |
| 732 | assert.NotNil(t, defaultTargetVersions) |
| 733 | } |
| 734 | |
| 735 | func TestInstance_checkVersion(t *testing.T) { |
| 736 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…