Scaffolding

This commit is contained in:
Max Goedjen
2021-01-17 19:54:42 -08:00
parent 4de805dd37
commit 06271b17c8
4 changed files with 65 additions and 10 deletions

View File

@@ -0,0 +1,32 @@
import XCTest
@testable import Brief
class ReleaseParsingTests: XCTestCase {
func testNonCritical() {
}
func testCritical() {
}
func testOSGreaterThanMinimum() {
}
func testOSLessThanMinimum() {
}
func testGreatestSelectedIfOldPatchIsPublishedLater() {
// If 2.x.x series has been published, and a patch for 1.x.x is issued
// 2.x.x should still be selected if user can run it.
}
func testLatestVersionIsRunnable() {
// If the 2.x.x series has been published but the user can't run it
// the last version the user can run should be selected.
}
}