public void ProxyToViewModelList_ValidParams_ReturnsViewModel()
        {
            var test = assembler.ProxyToViewModelList(validGoals);

            Assert.IsNotNull(test);

            Assert.IsInstanceOf <IList <GoalViewModel> >(test);

            Assert.AreEqual(1, test.Count);
        }