Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
1k views

Unit testing code that does date processing based on today's date

When code processes dates based on the current date, testing should cover edge cases such as leap years as well as the more frequent month and year boundaries. In our code we always get the current ...
3
votes
1answer
93 views

What are the 'corner cases' in differing markdown implementations?

The author writes the following about the differences between different markdown implementations: The result is that there are a lot of Markdown parsers in a lot of languages, and they all give ...
3
votes
5answers
267 views

How should centenarian date of birth fields be handled?

"A centenarian is a person who has attained the age of 100 years or more." - Wikipedia There are several ways to prompt a user for Date of Birth, but let's say we've chosen the drop down method. How ...
0
votes
2answers
157 views

C#: Edge Cases when removing a subset of a day from a TimeSpan on a daily basis

I'm trying to determine a TimeSpan (eg., time between logout and login), but with the caveat that a part of each day shouldn't be counted (eg., don't count the time between 7PM and 7AM on a given ...
0
votes
2answers
156 views

Multi-dimensional array edge/border conditions

I'm iterating over a 3 dimensional array (which is an image with 3 values for each pixel) to apply a 3x3 filter to each pixel as follows: //For each value on the image for ...