01 2017 档案

好的产品经理,差的产品经理
摘要:Ben Horowitz这篇不朽的杰作诞生于1996年,但时间的久远丝毫不影响其对当前的警示作用。那时,作为Netscape产品管理部门经理的Ben,没有假大空地介绍产品经理的角色和责任,而是很直观地对比了一个好的产品经理和差的产品经理。 好的产品经理,差的产品经理 ——Ben Horowitz 好 阅读全文

posted @ 2017-01-26 20:11 荣锋亮 阅读(215) 评论(0) 推荐(0) 编辑

nginx 启用http2 https 无法访问的问题
摘要:原因: 1. openssl 版本过低 解决方法:进行升级 yum update openssl 2.ssl_ciphers 配置有问题 解决方法:修改为 ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:AES256+EECDH:AES256+EDH'; 3. 本身 阅读全文

posted @ 2017-01-24 22:07 荣锋亮 阅读(2850) 评论(0) 推荐(0) 编辑

Automating CSS Regression Testing
摘要:The following is a guest post by Garris Shipon . We've touched on the four types of CSS testing here before. Regression testing is the hardest. It's t 阅读全文

posted @ 2017-01-23 21:35 荣锋亮 阅读(443) 评论(0) 推荐(0) 编辑

jasmine 使用
摘要:1. 下载浏览器运行测试包 https://github.com/jasmine/jasmine/releases https://github.com/jasmine/jasmine/releases 2. 解压,运行包含的测试 SpecRunner.html SpecRunner.html 3. 阅读全文

posted @ 2017-01-22 16:50 荣锋亮 阅读(518) 评论(0) 推荐(0) 编辑

编写浏览器和Node.js通用的JavaScript模块
摘要:长期以来JavaScript语言本身不提供模块化的支持, ES6中终于给出了 from, import等关键字来进行模块化的代码组织。 但CommonJS、AMD等规范已经被广为使用,如果希望你的JavaScript同时支持浏览器和Node.js, 现在只有这几种方式: 通过 browserify等 阅读全文

posted @ 2017-01-22 16:49 荣锋亮 阅读(537) 评论(0) 推荐(0) 编辑

Cucumber 使用例子
摘要:1. junit 配置 @RunWith(Cucumber.class) @CucumberOptions(format ={"pretty","html:target/cucumber"}, features={"src/main/java/demoapp"},tags={"@third"}) public class test { } # language: zh-CN 功... 阅读全文

posted @ 2017-01-22 09:29 荣锋亮 阅读(1201) 评论(0) 推荐(0) 编辑

Cucumber 之Gherkin
摘要:1.Gherkin简介: Cucumber是一个解释程序,就像ruby命令执行解释 .rb文件里的Ruby代码一样,Cucumber用来执行解释 .feature文件里的Gehrkin代码。 2. 关键字: 当你编写一个feature文件的时候,会用到很多Gherkin语言里特定的关键字,主要包括下 阅读全文

posted @ 2017-01-21 18:18 荣锋亮 阅读(492) 评论(0) 推荐(0) 编辑

Cucumber
摘要:Cucumber 是一个能够理解用普通语言 描述的测试用例的支持行为驱动开发(BDD)的自动化测试工具,用Ruby编写,支持Java和.Net等多种开发语言。 https://github.com/cucumber/cucumber 阅读全文

posted @ 2017-01-20 14:44 荣锋亮 阅读(324) 评论(0) 推荐(0) 编辑

Cobertura 代码覆盖率测试
摘要:Cobertura 是一种开源工具,它通过检测基本的代码,并观察在测试包运行时执行了哪些代码和没有执行哪些代码,来测量测试覆盖率。除了找出未测试到的代码并发现 bug 外,Cobertura 还可以通过标记无用的、执行不到的代码来优化代码,还可以提供 API 实际操作的内部信息。Elliotte R 阅读全文

posted @ 2017-01-08 10:52 荣锋亮 阅读(784) 评论(0) 推荐(0) 编辑

spring && Cobertura && maven &&junit 单元测试以及测试覆盖率
摘要:1. 目的: junit 单元测试,Cobertura 测试覆盖率报告 项目目录结构 2. maven 配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema- 阅读全文

posted @ 2017-01-07 19:38 荣锋亮 阅读(2251) 评论(0) 推荐(0) 编辑

spring retry 使用
摘要:1. 场景 系统方法调用时无状态的,同时因为网络原因,或者系统暂时故障,进行的重试 2. maven 依赖 <projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins 阅读全文

posted @ 2017-01-05 17:04 荣锋亮 阅读(1493) 评论(0) 推荐(0) 编辑

netflix:Conductor微服务编排引擎
摘要:项目地址: https://github.com/Netflix/conductor Conductor 是 Netflix 受需要运行全球流媒体业务流程的启发,构建的基于云的微服务编排引擎。 Conductor 管理工作流,可以暂停和重新启动进程,并使用基于 JSON DSL 的蓝图来定义执行流。 阅读全文

posted @ 2017-01-01 17:24 荣锋亮 阅读(4756) 评论(0) 推荐(0) 编辑

导航