mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
37 lines
No EOL
934 B
JavaScript
37 lines
No EOL
934 B
JavaScript
define(["helper/ConstantOutput", "Tone/signal/Negate", "helper/Basic",
|
|
"Test", "Tone/source/Oscillator", "Tone/signal/Signal"],
|
|
function (ConstantOutput, Negate, Basic, Test, Oscillator, Signal) {
|
|
|
|
describe("Negate", function(){
|
|
|
|
Basic(Negate);
|
|
|
|
context("Negating", function(){
|
|
|
|
it("handles input and output connections", function(){
|
|
var negate = new Negate();
|
|
Test.connect(negate);
|
|
negate.connect(Test);
|
|
negate.dispose();
|
|
});
|
|
|
|
it("negateates a positive value", function(){
|
|
return ConstantOutput(function(){
|
|
var signal = new Signal(1);
|
|
var negate = new Negate();
|
|
signal.connect(negate);
|
|
negate.toMaster();
|
|
}, -1);
|
|
});
|
|
|
|
it("makes a negateative value positive", function(){
|
|
return ConstantOutput(function(){
|
|
var signal = new Signal(-10);
|
|
var negate = new Negate();
|
|
signal.connect(negate);
|
|
negate.toMaster();
|
|
}, 10);
|
|
});
|
|
});
|
|
});
|
|
}); |