public void Integration()
        {
            var testSolution = new TestSolution();

            var fanIn = new FanInCalculator(testSolution).CalculateFor(testSolution.ComponentC);

            Assert.AreEqual(3, fanIn);
        }
 private void CreateCalculator()
 {
     this.calculator = new FanInCalculator(this.solution);
 }