2019-08-04 14:07:19 +00:00
|
|
|
import { expect } from "chai";
|
2019-07-11 21:11:07 +00:00
|
|
|
import { BasicTests } from "test/helper/Basic";
|
|
|
|
import { ConstantOutput } from "test/helper/ConstantOutput";
|
|
|
|
import { Zero } from "./Zero";
|
|
|
|
|
|
|
|
describe("Zero", () => {
|
|
|
|
|
|
|
|
BasicTests(Zero);
|
|
|
|
|
|
|
|
context("Zero", () => {
|
|
|
|
|
2019-08-04 14:07:19 +00:00
|
|
|
it("has 0 inputs and 1 output", () => {
|
|
|
|
const zero = new Zero();
|
|
|
|
expect(zero.numberOfInputs).to.equal(0);
|
|
|
|
expect(zero.numberOfOutputs).to.equal(1);
|
|
|
|
zero.dispose();
|
2019-07-11 21:11:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("always outputs 0", () => {
|
|
|
|
return ConstantOutput(() => {
|
2019-07-25 15:32:56 +00:00
|
|
|
new Zero().toDestination();
|
2019-07-11 21:11:07 +00:00
|
|
|
}, 0, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|