Red green refactor coding exercise.
Within this repository you will find a solution DivisorsKata.sln this solution contains 2 projects
DivisorsKataProject containing 1 classDivisorCalculatorwith a calculate method (where the main logic will go).DivisorsKata.Tests.UnitProject containing 1 class that has tests for theDivisorCalculator
Currently the project should build but contains 1 failing test.

This task should be undertaken in pairs.
The aim of this task is to create a function that when passed a whole positive integer will return all of the integers that the number can be divided by for instance passing 1 will return [1] and passing 64 will return [1, 2, 4, 8, 16, 32, 64]
This task should be performed using red green refactor. Where the first person will fix any failing tests making the minimum code change required. they will then write 1 failing test and recommit the code where it can then be picked up by the other member of the pair.