using System; namespace DotNetMock.Examples.Dynamic{ public interface IWeatherRandom { bool NextIsRaining(); double NextTemperature(); } }