mirror of
https://github.com/coteditor/CotEditor.git
synced 2024-11-09 13:31:25 +03:00
42 lines
1.0 KiB
Swift
42 lines
1.0 KiB
Swift
/*
|
|
|
|
FontExtensionTests.swift
|
|
Tests
|
|
|
|
CotEditor
|
|
https://coteditor.com
|
|
|
|
Created by 1024jp on 2016-06-10.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
© 2016 1024jp
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
import XCTest
|
|
@testable import CotEditor
|
|
|
|
class FontExtensionTests: XCTestCase {
|
|
|
|
func testFontSize() {
|
|
|
|
let font = NSFont(name: "Menlo-Regular", size:11)?.screen
|
|
|
|
XCTAssertEqual(font?.advancement(character: " ").width, 7)
|
|
}
|
|
|
|
}
|