AutoMoq.Tests.ConstructorTests.I_can_instantiate_a_working_automoqer_with_no_dependencies C# (CSharp) Метод

I_can_instantiate_a_working_automoqer_with_no_dependencies() приватный Метод

private I_can_instantiate_a_working_automoqer_with_no_dependencies ( ) : void
Результат void
        public void I_can_instantiate_a_working_automoqer_with_no_dependencies()
        {
            var mocker = new AutoMoqer();

            var bar = mocker.Create<Bar>();
            bar.Foo.ShouldBeSameAs(mocker.GetMock<IFoo>().Object);
        }