public void GetCookieTest()
        {
            var expectation = new VocSurveyPersonalisation
            {
                Personalisation = new Dictionary <string, string>
                {
                    { Constants.LastVisitedJobProfileKey, Constants.Unknown },
                    { Constants.GoogleClientIdKey, Constants.Unknown }
                }
            };

            var webAppContext = new WebAppContext();
            var result        = webAppContext.GetVocCookie("name");

            result.Should().BeEquivalentTo(expectation);
        }