CodelyTV / csharp-finder_refactoring-kata

🦈🔍Incomprehensible Finder Refactoring Kata port for C#

Home Page:https://codely.tv

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incomprehensible Finder Refactoring Kata in CSharp

Introduction

Here is the bad news: the new developer you hired has written some terrible, atrocious code. No one can understand what it does.

The good news: at least there are unit tests to prove the code is working.

You job is to refactor the code and make it readable, while keeping the code in working order (pass all tests).

How To Start

  1. Clone this repository git clone https://github.com/CodelyTV/finder-refactoring-kata-csharp
  2. Install dotnet sdk 2.2 and ASP.NET Core Runtime (https://dotnet.microsoft.com/download/dotnet-core/2.2)
  3. Build the project directory using dotnet build
  4. Run the tests with dotnet test.
  5. Start refactoring!

The primary goal is to refactor the code in Finder.cs - as it stands the code is incomprehensible.

Tips

  • Start with simple rename refactors so you can better understand the abstractions you are working with. Rename any class or any variable.
  • Move on to extract methods and making the code more modular.
  • See if you can also eliminate pattern matchings and multiple exit points from methods.

Anything is fair game, create new classes, new methods, and rename tests. The only restriction is that the existing tests have to keep working. Lean on the tests and run them after every small change to make sure you are on the right path.

How to End

You can stop when you feel the code is good enough, something you can come back to in 6 months and understand.

Helpful resources

Refactoring

Credits and other programming languages

You can also find the kata in different programming languages in isolated repositories just ready to clone and enjoy:

This kata is a CSharp port of the original Incomprehensible Finder Refactoring Kata created by K. Scott Allen.

Port developed by CodelyTV and contributors 😊

About

🦈🔍Incomprehensible Finder Refactoring Kata port for C#

https://codely.tv


Languages

Language:C# 100.0%