# -*- coding:utf-8 -*- import unittest class test(unittest.TestCase): def setUp(self): print 'This is the setup msg' def tearDown(self): print 'This is the teardown msg' def test1(self): print 'This is the first testcase' def test2(self): print 'This
对于移动应用开发者而言,Bug往往是最让人头疼的一大问题.不同于时时刻刻可以修补的Web App,移动App中的Bug往往隐藏得很深,甚至有时候等到用户使用才显现出来,这么一来开发者搞不好就会赔了名声又折钱.所以在应用发行之前,对其进行严格的测试是非常必要的.而移动应用测试框架可以帮助开发者简化测试流程,从而很好地解决这一问题.今天,给大家详细介绍当下最受开发者欢迎的十大免费移动应用测试框架,一起来看看吧. 1. Appium(iOS/Android) A