3
votes
2answers
181 views

Refactor to make intention clearer and testable

I'd like to improve the readability of the following code. The aim of this code is to apply formatting to row(s) in a WinForms DataGridView based on the Priority of an item, determined either by its ...
9
votes
4answers
244 views

How to improve this to a readable Unittests that explain the Class better ?

for starters i though of going with a mostly code only example. This shows a testcase for an old caching library i use for a project. It features simple save/load/delete functions (saidly static ...