public void Deserialize_Null() { AdvAssert.ThrowsArgumentNull(() => LogEntryData.Deserialize(null), "data"); }
public void Constructor_NullEventLog() { AdvAssert.ThrowsArgumentNull(() => new LogViewPresenter(null), "logViewModel"); }
public void Constructor_Null() { AdvAssert.ThrowsArgumentNull(() => new AdvSC(null), "serviceName"); }
public void Constructor_NullManager() { AdvAssert.ThrowsArgumentNull(() => new ServiceGateway(new AdvSCStub(), null), "serviceInterfaceManager"); }
public void Constructor_NullGateway() { AdvAssert.ThrowsArgumentNull(() => new MainViewPresenter(null), "serviceGateway"); }
public void Start_ServiceInterfaceIsNull() { AdvAssert.ThrowsArgumentNull(() => core.Start(ruleset, null, null), "serviceInterface"); }
public void Constructor_NullSC() { AdvAssert.ThrowsArgumentNull(() => new ServiceGateway(null, new ServiceInterfaceManagerStub()), "sc"); }
public void Start_RulesetIsNull() { AdvAssert.ThrowsArgumentNull(() => core.Start(null, serviceInterface, null), "ruleset"); }
public void Constructor_NullModel() { AdvAssert.ThrowsArgumentNull(() => new FormMainPresenter(_Form, _ServiceGateway, null), "logViewModel"); }
public void Constructor_NullGateway() { AdvAssert.ThrowsArgumentNull(() => new FormMainPresenter(_Form, null, _LogViewModel), "serviceGateway"); }
public void Constructor_NullForm() { AdvAssert.ThrowsArgumentNull(() => new FormMainPresenter(null, new ServiceGateway(new AdvSCStub(), new ServiceInterfaceManagerStub()), new LogViewModelMock()), "formMain"); }
public void Constructor_NullEventLog() { AdvAssert.ThrowsArgumentNull(() => new LogViewModel(null), "eventLog"); }