本文介绍了如何使用MediaMuxerTest(一个AndroidTestCase文件)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我找到MeediaMuxer,这是一个AndroidTestCase文件演示。这里是链接。
我从来没有使用过Android的测试。我做了一些研究,但大部分都是以某种方式有点复杂......好像我需要一个XML文件,TestSuite的一个java文件和AndroidTestCase的Java文件。现在我有AndroidTestCase,任何人都可以告诉我怎么写的TestSuite?谢谢!
解决方案
从<一个href=\"http://developer.android.com/reference/junit/framework/TestSuite.html#createTest%28java.lang.Class%3C?%3E,%20java.lang.String%29\"相对=nofollow> TestSuit 概述
TestSuite suite= new TestSuite();
suite.addTest(new MathTest("testAdd"));
suite.addTest(new MathTest("testDivideByZero"));
Android provide a pretty good documentation for that, tell me if you have more questions after reading it.
Also here is the official article about testing in Android.
这篇关于如何使用MediaMuxerTest(一个AndroidTestCase文件)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!