fjbelchi/clean-iOS-architecture-generator

View on GitHub
Demo/iOSCleanArchitectureGenerator/iOSCleanArchitectureGeneratorTests/ViewModels/FJBNotificationsViewModelTests.m

Summary

Maintainability
Test Coverage
//
//  FJBNotificationsViewModelTests.m
//  FJBNotificationsViewModelTests
//  
//  Created by fran_dev on 30/12/2014.
//  Copyright (c) 2014. All rights reserved.
//

#import <XCTest/XCTest.h>
#import "FJBNotificationsViewModel.h"

@interface FJBNotificationsViewModelTests : XCTestCase

@end

@implementation FJBNotificationsViewModelTests

- (void)setUp {
    [super setUp];
    // Put setup code here. This method is called before the invocation of each test method in the class.
}

- (void)tearDown {
    // Put teardown code here. This method is called after the invocation of each test method in the class.
    [super tearDown];
}

#pragma mark - Actions

// Dismiss the ViewController when the button is tapped

- (void)testdidTapOnCloseButtonShouldPass
{
    // given
    // when
    // then
    XCTFail(@"No implemented test");
}

// Mark notification as read when the notification is selected

- (void)testdidTapAtIndexPathShouldPass
{
    // given
    // when
    // then
    XCTFail(@"No implemented test");
}


@end