From f695d7f1da1bf7a033fb256e4d370e59c0f83d39 Mon Sep 17 00:00:00 2001 From: binary-husky Date: Fri, 11 Oct 2024 13:32:57 +0000 Subject: [PATCH] test math anim generation --- tests/test_anim_gen.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/test_anim_gen.py diff --git a/tests/test_anim_gen.py b/tests/test_anim_gen.py new file mode 100644 index 00000000..0084f841 --- /dev/null +++ b/tests/test_anim_gen.py @@ -0,0 +1,12 @@ +""" +对项目中的各个插件进行测试。运行方法:直接运行 python tests/test_plugins.py +""" + +import init_test +import os, sys + + +if __name__ == "__main__": + from test_utils import plugin_test + + plugin_test(plugin='crazy_functions.数学动画生成manim->动画生成', main_input="A point moving along function culve y=sin(x), starting from x=0 and stop at x=4*\pi.")