2019-07-11 21:20:11 +00:00
|
|
|
import { BasicTests } from "test/helper/Basic";
|
|
|
|
import { connectFrom, connectTo } from "test/helper/Connect";
|
|
|
|
import { ConstantOutput } from "test/helper/ConstantOutput";
|
|
|
|
import { Abs } from "./Abs";
|
|
|
|
import { Signal } from "./Signal";
|
|
|
|
|
|
|
|
describe("Abs", () => {
|
|
|
|
|
|
|
|
BasicTests(Abs);
|
|
|
|
|
|
|
|
context("Absolute Value", () => {
|
|
|
|
|
|
|
|
it("outputs the same value for positive values", () => {
|
|
|
|
return ConstantOutput(() => {
|
|
|
|
const signal = new Signal(0.4);
|
|
|
|
const abs = new Abs();
|
|
|
|
signal.connect(abs);
|
2019-07-25 15:32:56 +00:00
|
|
|
abs.toDestination();
|
2019-07-11 21:20:11 +00:00
|
|
|
}, 0.4);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("outputs 0 when the input is 0", () => {
|
|
|
|
return ConstantOutput(() => {
|
|
|
|
const signal = new Signal(0);
|
|
|
|
const abs = new Abs();
|
|
|
|
signal.connect(abs);
|
2019-07-25 15:32:56 +00:00
|
|
|
abs.toDestination();
|
2019-07-11 21:20:11 +00:00
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("outputs the absolute value for negative numbers", () => {
|
|
|
|
return ConstantOutput(() => {
|
|
|
|
const signal = new Signal(-0.3);
|
|
|
|
const abs = new Abs();
|
|
|
|
signal.connect(abs);
|
2019-07-25 15:32:56 +00:00
|
|
|
abs.toDestination();
|
2019-07-11 21:20:11 +00:00
|
|
|
}, 0.3);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|