MockActionSheetButton.swift 533 B

1234567891011121314151617181920
  1. //
  2. // MockActionSheetButton.swift
  3. // SheeeeeeeeetTests
  4. //
  5. // Created by Daniel Saidi on 2018-10-17.
  6. // Copyright © 2018 Daniel Saidi. All rights reserved.
  7. //
  8. import Sheeeeeeeeet
  9. class MockActionSheetButton: ActionSheetButton {
  10. var applyAppearanceInvokeCount = 0
  11. var applyAppearanceInvokeAppearances = [ActionSheetAppearance]()
  12. override func applyAppearance(_ appearance: ActionSheetAppearance) {
  13. applyAppearanceInvokeCount += 1
  14. applyAppearanceInvokeAppearances.append(appearance)
  15. }
  16. }