package com.blogspot.toomuchcoding.book.chapter2._8_CreatingMocksOnObjectCreation; import com.blogspot.toomuchcoding.person.Person; public class TaxWebService { public double calculateTaxFactorFor(Person person) { return 0; } }