public void TestGetPrimaryPhotoLogic()
        {
            ProfilePhoto result = new ProfilePhoto();
            ProfilePhoto request = new ProfilePhoto { UserID = 137179126684623 };

            LogHelper.LogInformation("Here we go...");
            try
            {
                var logic = new ProfileLogic();
                result = logic.GetPrimaryProfilePhoto(request);
            }
            catch (Exception ex)
            {
                LogHelper.LogError(ex, "What Happened?");
                result = null;
            }

            Assert.IsTrue(result != null);
        }