xunit setup throw exception

Code Example - xunit setup throw exception

                
                        Mock<ISomeObj> someObj = new Mock<ISomeObj>();

//NOTE the Throws method
someObj.Setup(s => s.Get())
  .Throws(new IOException());