public void init() { mockHttp = new MockHttpMessageHandler(); mockHttp.When("http://10.0.0.44:8080/*") .Respond("application/json", "6"); client = new HttpClient(mockHttp); client.BaseAddress = baseUri; koerpersteuerung = new Koerpersteuerung(client); }
public BaseballSpieler(IKoerpersteuerung koerpersteuerung) { this.koerpersteuerung = koerpersteuerung; }
public void init() { koMock = new Mock<IKoerpersteuerung>(); koerpersteuerung = koMock.Object; harald = new BaseballSpieler(koerpersteuerung); }