// // Created by AUTHOR. // Copyright © YEAR AUTHOR. All rights reserved. //
//#import “Spec.h” - this header should have imports of Specta, Expecta, OCMokito, OCHamrest import “VIPERInteractor.h”
SpecBegin(VIPERInteractor)
describe(@“VIPERInteractor”,^{
__block VIPERInteractor *sut; beforeEach(^{ }); afterEach(^{ sut = nil; }); describe(@"VIPERInteractorComponent",{ it(@"VIPERInteractorComponent should pass test",{ }); });
});
SpecEnd