|
@@ -84,7 +84,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let dataEntries = setupDefaultValuesDataEntries()
|
|
let dataEntries = setupDefaultValuesDataEntries()
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testZeroValues()
|
|
func testZeroValues()
|
|
@@ -92,7 +92,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let dataEntries = setupZeroValuesDataEntries()
|
|
let dataEntries = setupZeroValuesDataEntries()
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValues()
|
|
func testPositiveValues()
|
|
@@ -100,7 +100,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let dataEntries = setupPositiveValuesDataEntries()
|
|
let dataEntries = setupPositiveValuesDataEntries()
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValuesWithCustomAxisMaximum()
|
|
func testPositiveValuesWithCustomAxisMaximum()
|
|
@@ -109,8 +109,9 @@ class BarChartTests: FBSnapshotTestCase
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMaximum = 50
|
|
chart.leftAxis.axisMaximum = 50
|
|
|
|
+ chart.clipValuesToContentEnabled = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValuesWithCustomAxisMaximum2()
|
|
func testPositiveValuesWithCustomAxisMaximum2()
|
|
@@ -120,7 +121,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMaximum = -10
|
|
chart.leftAxis.axisMaximum = -10
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValuesWithCustomAxisMinimum()
|
|
func testPositiveValuesWithCustomAxisMinimum()
|
|
@@ -130,7 +131,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMinimum = 50
|
|
chart.leftAxis.axisMinimum = 50
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValuesWithCustomAxisMinimum2()
|
|
func testPositiveValuesWithCustomAxisMinimum2()
|
|
@@ -140,7 +141,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMinimum = 110
|
|
chart.leftAxis.axisMinimum = 110
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testPositiveValuesWithCustomAxisMaximumAndCustomAxisMaximum()
|
|
func testPositiveValuesWithCustomAxisMaximumAndCustomAxisMaximum()
|
|
@@ -152,7 +153,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
chart.leftAxis.axisMaximum = 200
|
|
chart.leftAxis.axisMaximum = 200
|
|
chart.leftAxis.axisMinimum = -10
|
|
chart.leftAxis.axisMinimum = -10
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testNegativeValues()
|
|
func testNegativeValues()
|
|
@@ -160,7 +161,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let dataEntries = setupNegativeValuesDataEntries()
|
|
let dataEntries = setupNegativeValuesDataEntries()
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let dataSet = setupDefaultDataSet(chartDataEntries: dataEntries)
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testNegativeValuesWithCustomAxisMaximum()
|
|
func testNegativeValuesWithCustomAxisMaximum()
|
|
@@ -170,7 +171,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMaximum = 10
|
|
chart.leftAxis.axisMaximum = 10
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testNegativeValuesWithCustomAxisMaximum2()
|
|
func testNegativeValuesWithCustomAxisMaximum2()
|
|
@@ -180,7 +181,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMaximum = -150
|
|
chart.leftAxis.axisMaximum = -150
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -191,7 +192,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMinimum = -200
|
|
chart.leftAxis.axisMinimum = -200
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testNegativeValuesWithCustomAxisMinimum2()
|
|
func testNegativeValuesWithCustomAxisMinimum2()
|
|
@@ -201,7 +202,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.axisMinimum = 10
|
|
chart.leftAxis.axisMinimum = 10
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testNegativeValuesWithCustomAxisMaximumAndCustomAxisMaximum()
|
|
func testNegativeValuesWithCustomAxisMaximumAndCustomAxisMaximum()
|
|
@@ -213,7 +214,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
chart.leftAxis.axisMaximum = 10
|
|
chart.leftAxis.axisMaximum = 10
|
|
chart.leftAxis.axisMinimum = -200
|
|
chart.leftAxis.axisMinimum = -200
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testHidesValues()
|
|
func testHidesValues()
|
|
@@ -223,7 +224,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
dataSet.drawValuesEnabled = false
|
|
dataSet.drawValuesEnabled = false
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testHideLeftAxis()
|
|
func testHideLeftAxis()
|
|
@@ -233,7 +234,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.enabled = false
|
|
chart.leftAxis.enabled = false
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testHideRightAxis()
|
|
func testHideRightAxis()
|
|
@@ -243,7 +244,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.rightAxis.enabled = false
|
|
chart.rightAxis.enabled = false
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedLeftAxis()
|
|
func testInvertedLeftAxis()
|
|
@@ -253,7 +254,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.inverted = true
|
|
chart.leftAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedLeftAxisWithNegativeValues()
|
|
func testInvertedLeftAxisWithNegativeValues()
|
|
@@ -263,7 +264,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.inverted = true
|
|
chart.leftAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedLeftAxisWithPositiveValues()
|
|
func testInvertedLeftAxisWithPositiveValues()
|
|
@@ -273,7 +274,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.leftAxis.inverted = true
|
|
chart.leftAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedRightAxis()
|
|
func testInvertedRightAxis()
|
|
@@ -284,7 +285,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.rightAxis.inverted = true
|
|
chart.rightAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedRightAxisWithNegativeValues()
|
|
func testInvertedRightAxisWithNegativeValues()
|
|
@@ -295,7 +296,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.rightAxis.inverted = true
|
|
chart.rightAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testInvertedRightAxisWithPositiveValues()
|
|
func testInvertedRightAxisWithPositiveValues()
|
|
@@ -306,7 +307,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.rightAxis.inverted = true
|
|
chart.rightAxis.inverted = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testHideHorizontalGridlines()
|
|
func testHideHorizontalGridlines()
|
|
@@ -317,7 +318,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
chart.leftAxis.drawGridLinesEnabled = false
|
|
chart.leftAxis.drawGridLinesEnabled = false
|
|
chart.rightAxis.drawGridLinesEnabled = false
|
|
chart.rightAxis.drawGridLinesEnabled = false
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testHideVerticalGridlines()
|
|
func testHideVerticalGridlines()
|
|
@@ -327,7 +328,7 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
chart.xAxis.drawGridLinesEnabled = false
|
|
chart.xAxis.drawGridLinesEnabled = false
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
|
|
|
|
func testDrawIcons()
|
|
func testDrawIcons()
|
|
@@ -337,6 +338,6 @@ class BarChartTests: FBSnapshotTestCase
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
let chart = setupDefaultChart(dataSets: [dataSet])
|
|
dataSet.drawIconsEnabled = true
|
|
dataSet.drawIconsEnabled = true
|
|
chart.notifyDataSetChanged()
|
|
chart.notifyDataSetChanged()
|
|
- FBSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), tolerance: Snapshot.tolerance)
|
|
|
|
|
|
+ ChartsSnapshotVerifyView(chart, identifier: Snapshot.identifier(UIScreen.main.bounds.size), overallTolerance: Snapshot.tolerance)
|
|
}
|
|
}
|
|
}
|
|
}
|