public void CreateScore_EmptyEntity_ThrowsMissingInfoException()
        {
            var testClass  = InteractorFactory.Create_ScoreInteractor();
            var emptyScore = ScoreFactory.Create_ScoreEntity_Empty();

            Should.Throw <MissingInfoException>(() => testClass.CreateScore(emptyScore));
        }