What unit tests does Euphony use? #145
-
Euphony is mainly using c++ language & java. What unit tests does Euphony use? I want to know the unit-test name and the link of example code! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
In Euphony, for unit test, we use gtest for cpp and JUnit for java. [C++] [Java] |
Beta Was this translation helpful? Give feedback.
-
Answer: JUnit |
Beta Was this translation helpful? Give feedback.
-
Euphony uses gtest and JUnit4 for the unit test. The link is here. |
Beta Was this translation helpful? Give feedback.
In Euphony, for unit test, we use gtest for cpp and JUnit for java.
[C++]
Answer : gtest
Example : https://github.com/euphony-io/euphony/blob/54966925eb8a78d72e47eb31acd03c270f4c9694/euphony/src/main/cpp/tests/waveBuilderTest.cpp
[Java]
Answer: JUnit
Example: https://github.com/euphony-io/euphony-listener/blob/master/app/src/test/java/co/jbear/euphony_listener/ExampleUnitTest.java