public void FindControlHierarchic_WithTwoParameters_IfTheNamingContainerParameterIsNull_ShouldReturnNull() { ControlPresenter<IControlView> presenter = new Mock<ControlPresenter<IControlView>>(new object[] {Mock.Of<IControlView>()}) {CallBase = true}.Object; Assert.IsNull(presenter.FindControlHierarchic(null, "Test")); }