public void WhenTheReadObservableBytesMethodIsCalledWithTheFilename()
        {
            var filePath = _scenario.Get <string>("filePath");
            var stream   = ReactiveFileUtils.ReadObservableBytes(filePath);

            _scenario.Set <IList <byte> >(stream.ToList().Wait());
        }