Demo/iOSCleanArchitectureGenerator/iOSCleanArchitectureGeneratorTests/Interactors/FJBNotificationsApiInteractorTests.m
//
// FJBNotificationsApiInteractorTests.m
// FJBNotificationsApiInteractorTests
//
// Created by fran_dev on 30/12/2014.
// Copyright (c) 2014. All rights reserved.
//
#import <XCTest/XCTest.h>
#import "FJBNotificationsApiInteractor.h"
@interface FJBNotificationsApiInteractorTests : XCTestCase
@end
@implementation FJBNotificationsApiInteractorTests
- (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
// Perform API request to mark a notification as read
- (void)testmarkNotificationAsReadonCompletionBlockShouldPass
{
// given
// when
// then
XCTFail(@"No implemented test");
}
@end