public void UpdateInstrumentPrice_Requires_Symbol(string symbol) { //act / assert. new Action(() => _sut.UpdateInstrumentPrice(symbol, 1.23m)) .ShouldThrowExactly <ArgumentNullException>(); }