2019-08-04 10:07:19 -04:00
|
|
|
import { expect } from "chai";
|
2019-07-11 17:11:07 -04: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 10:07:19 -04: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 17:11:07 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it("always outputs 0", () => {
|
|
|
|
return ConstantOutput(() => {
|
2019-07-25 11:32:56 -04:00
|
|
|
new Zero().toDestination();
|
2019-07-11 17:11:07 -04:00
|
|
|
}, 0, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|