public void AsyncLoaderDoesNotSupportReplaceAll() { var loader = new AsyncLoader <int>(Seq.ListBased); Action callingReplaceAll = () => loader.ReplaceAll(new int[0]); callingReplaceAll.ShouldThrow <NotSupportedException>(); }