2016-08-13 08:07:08 +08:00
|
|
|
// This file is part of libfringe, a low-level green threading library.
|
|
|
|
// Copyright (c) whitequark <whitequark@whitequark.org>
|
2016-08-21 05:45:01 +08:00
|
|
|
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
|
|
|
|
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
|
|
|
|
// http://opensource.org/licenses/MIT>, at your option. This file may not be
|
|
|
|
// copied, modified, or distributed except according to those terms.
|
2016-08-13 08:07:08 +08:00
|
|
|
extern crate fringe;
|
|
|
|
|
|
|
|
use fringe::OsStack;
|
|
|
|
use fringe::generator::Generator;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn producer() {
|
|
|
|
let stack = OsStack::new(0).unwrap();
|
|
|
|
let mut gen = Generator::new(stack, move |yielder, ()| {
|
2016-08-30 18:37:15 +08:00
|
|
|
for i in 0.. { yielder.suspend(i) }
|
2016-08-13 08:07:08 +08:00
|
|
|
});
|
|
|
|
assert_eq!(gen.next(), Some(0));
|
|
|
|
assert_eq!(gen.next(), Some(1));
|
|
|
|
assert_eq!(gen.next(), Some(2));
|
|
|
|
}
|