/// <summary>
        /// The init.
        /// </summary>
        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);
        }