安装 $go get -u github.com/cweill/gotests/... 复制代码 具体使用示例 用法 $gotests [options] PATH ... 复制代码 options说明 -all generate go tests for all functions and methods -excl regexp. generate go tests for functions and methods that don't match. Takes precedence ov…
我们在编码的时候经常会用到findviewById,不厌其烦,我之前介绍过一个很取巧的方法,挺好用的,这里再贴一下: public class KaleBaseActivity extends Activity { private String TAG = getClass().getSimpleName(); public final <E extends View> E getView(int id) { try { return (E) findViewById(id); } catch…
在我刚翻译完的 Python 打包系列文章中,作者提到了一个神奇的测试工具 tox,而且他本人就是 tox 的维护者之一.趁着话题的相关性,本文将对它做简单的介绍,说不定大家在开发项目时能够用得上. Command line driven CI frontend and development task automation tool 命令行驱动的 CI 前端和开发任务自动化工具 tox 的项目地址是:https://github.com/tox-dev/tox 其核心作用是支持创建隔离的 Py…