AutoMoq.Tests.ConstructorTests.I_can_instantiate_a_working_automoqer_with_no_dependencies C# (CSharp) Method

I_can_instantiate_a_working_automoqer_with_no_dependencies() private method

        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);
        }