BinaryStudio.TaskManager.Web.Tests.ProfileControllerTests.Init C# (CSharp) Method

Init() public method

The init.
public Init ( ) : void
return void
        public void Init()
        {
            this.userRepositoryMock = new Mock<IUserRepository>();
            this.userProcessorMock = new Mock<IUserProcessor>();
            this.projectProcessorMock = new Mock<IProjectProcessor>();

            this.controller = new ProfileController(
                this.userProcessorMock.Object, this.projectProcessorMock.Object);
        }
    }
ProfileControllerTests