Continue renaming Id to ID (and similar renames).

This commit is contained in:
Brent Simmons
2023-09-16 22:04:43 -07:00
parent dd8df6e6c5
commit 5e3086667d
60 changed files with 420 additions and 391 deletions

View File

@@ -32,12 +32,12 @@ class AppleScriptXCTestCase: XCTestCase {
var errorDict: NSDictionary? = nil
let testBundle = Bundle(for: type(of: self))
let url = testBundle.url(forResource:filename, withExtension:"scpt")
guard let testScriptUrl = url else {
guard let testScriptURL = url else {
XCTFail("Failed Getting script URL")
return nil
}
guard let testScript = NSAppleScript(contentsOf: testScriptUrl, error: &errorDict) else {
guard let testScript = NSAppleScript(contentsOf: testScriptURL, error: &errorDict) else {
print ("error is \(String(describing: errorDict))")
XCTFail("Failed initializing NSAppleScript")
return nil

View File

@@ -32,11 +32,11 @@ class ScriptingTests: AppleScriptXCTestCase {
XCTAssert( scriptResult?.stringValue == "Geoducks!")
}
func testGetUrlScript() {
func testGetURLScript() {
_ = doIndividualScript(filename: "testGetURL")
}
func testNameAndUrlOfEveryFeedScript() {
func testNameAndURLOfEveryFeedScript() {
_ = doIndividualScript(filename: "testNameAndUrlOfEveryFeed")
}