public void MatchesSearchTerm_Should_ReturnTrue()
        {
            var entity = new EntityListItem
            {
                EntityId = Guid.Empty,
                Name     = string.Empty,
            };
            var searchTerm = string.Empty;

            var result = entity.MatchesSearchTerm(searchTerm);

            Assert.True(result);
        }