ronanrodrigo/my-customers

View on GitHub
MyCustomersCoreTests/Mocks/CreateCustomerOutputPresenterMock.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation

class CreateCustomerOutputPresenterMock: CreateCustomerOutputPresenter {

    var showedCustomer = false

    func show() {
        showedCustomer = true
    }

}