SkipIfUAAVersionLessThan is used to skip tests if the UAA version is < the specified version
(version string)
| 73 | |
| 74 | // SkipIfUAAVersionLessThan is used to skip tests if the UAA version is < the specified version |
| 75 | func SkipIfUAAVersionLessThan(version string) { |
| 76 | if !IsUAAVersionAtLeast(version) { |
| 77 | Skip(fmt.Sprintf("Test requires UAA version at least %s", version)) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // SkipIfUAAVersionAtLeast is used to skip tests if the UAA version >= the specified version. |
| 82 | func SkipIfUAAVersionAtLeast(version string) { |
no test coverage detected