File tree 4 files changed +18
-3
lines changed
Sources/LaTeXSwiftUI/Views
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will build a Swift project
2
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3
3
4
- name : Swift
4
+ name : Unit Tests
5
5
6
6
on :
7
7
push :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ internal struct ComponentBlockText: View {
50
50
51
51
// MARK: View body
52
52
53
- var body : some View {
53
+ var body : Text {
54
54
block. components. enumerated ( ) . map { i, component in
55
55
return component. convertToText (
56
56
font: font ?? . body,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ internal struct ComponentBlocksText: View {
38
38
39
39
var body : some View {
40
40
blocks. map { block in
41
- let text = ComponentBlockText ( block: block) . body as! Text
41
+ let text = ComponentBlockText ( block: block) . body
42
42
return block. isEquationBlock && !forceInline ?
43
43
Text ( " \n " ) + text + Text( " \n " ) :
44
44
text
Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ import XCTest
4
4
5
5
final class GeometryTests : XCTestCase {
6
6
7
+ func testInitXHeight_Success1( ) {
8
+ let value = SVGGeometry . XHeight ( stringValue: " 0ex " )
9
+ XCTAssertEqual ( value, 0 )
10
+ }
11
+
12
+ func testInitXHeight_Success2( ) {
13
+ let value = SVGGeometry . XHeight ( stringValue: " 0 " )
14
+ XCTAssertEqual ( value, 0 )
15
+ }
16
+
17
+ func testInitXHeight_Failure( ) {
18
+ let value = SVGGeometry . XHeight ( stringValue: " zeroex " )
19
+ XCTAssertNil ( value)
20
+ }
21
+
7
22
func testSVGGeometry_parseAlignment( ) {
8
23
let input = " \" vertical-align: -1.602ex; \" "
9
24
let value = SVGGeometry . parseAlignment ( from: input)
You can’t perform that action at this time.
0 commit comments