public void GetLong_ReturnsCorrectLong() { Assert.Equal(12345, AttributeHelpers.GetLong("12345")); Assert.Null(AttributeHelpers.GetLong("")); Assert.Null(AttributeHelpers.GetLong(null)); Assert.Null(AttributeHelpers.GetLong("SOME_RANDOM_STRING")); }