Initial commit
This commit is contained in:
36
AntidoteTests/ChatMovableDateCellSnapshotTest.swift
Normal file
36
AntidoteTests/ChatMovableDateCellSnapshotTest.swift
Normal file
@@ -0,0 +1,36 @@
|
||||
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
import Foundation
|
||||
|
||||
class ChatMovableDateCellSnapshotTest: CellSnapshotTest {
|
||||
override func setUp() {
|
||||
super.setUp()
|
||||
|
||||
recordMode = false
|
||||
}
|
||||
|
||||
func testDefault() {
|
||||
let model = ChatMovableDateCellModel()
|
||||
model.dateString = "03:13"
|
||||
|
||||
let cell = ChatMovableDateCell()
|
||||
cell.setupWithTheme(theme, model: model)
|
||||
|
||||
updateCellLayout(cell)
|
||||
verifyView(cell)
|
||||
}
|
||||
|
||||
func testPanned() {
|
||||
let model = ChatMovableDateCellModel()
|
||||
model.dateString = "03:13"
|
||||
|
||||
let cell = ChatMovableDateCell()
|
||||
cell.setupWithTheme(theme, model: model)
|
||||
|
||||
updateCellLayout(cell)
|
||||
cell.movableOffset = -200.0
|
||||
verifyView(cell)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user