aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/com/jsyn
Commit message (Collapse)AuthorAgeFilesLines
* Add PlateReverb, RoomReverb and MultiTapDelay units (#115)Phil Burk2023-04-101-0/+73
| | | | | | | | | | | | | PlateReverb is a simulation of a metal plate based on all-pass delays. RoomReverb uses a MultiTapDelay for early reflections and a PlateReverb for diffusion. Add a DSP package with utility classes used to build unit generators. Add TuneReverb app with faders for experimenting and hearing reverb. Add unit tests for SimpleDelay. Co-authored-by: Phil Burk <[email protected]>
* WaveRecorder: fix hang in StreamingThread (#106)Phil Burk2022-01-302-1/+75
| | | | | | | | | | The read() could hang forever waiting for data when the WaveRecorder was stopped. Now it terminates the thread. Also fix bug in AudioFifo when partially full. It would not read any data! Fixes #105
* Add getUnits() method to Circuit. (#104)Phil Burk2021-10-301-0/+44
| | | Add new TestCircuit unit test.
* Remove SLF4J from tests and gradlePhil Burk2021-09-0614-103/+40
| | | | It was an unnecessary dependency.
* tests: fix unit testsPhil Burk2021-08-296-14/+31
| | | | | | | | | Add missing parameters. Create PseudoRandom. Do not run test that generates the WAV files. Fix hang in TestConnections. Fixes #97
* Downgraded to Java 8RubbaBoy2020-10-303-7/+7
| | | | Includes a minor logging fix
* Restructured project, added gradle, JUnit, logger, and moreRubbaBoy2020-10-3031-0/+4679
Added Gradle (and removed ant), modernized testing via the JUnit framework, moved standalone examples from the tests directory to a separate module, removed sparsely used Java logger and replaced it with SLF4J. More work could be done, however this is a great start to greatly improving the health of the codebase.