Skip to content

Instantly share code, notes, and snippets.

@tomcatzh
tomcatzh / gist:8f3cd4d652c29db54cdc
Created March 17, 2015 02:47
GoConvey ShouldPanic系列Assertions的用法

GoConvey ShouldPanic系列Assertions的用法

GoConvey简介

GoConvey是一款优秀的Golang测试框架,可以快速优雅的开发Golang的测试用例,并且提供自动化的测试支持。

同时GoConvey框架提供了丰富的Assertions支持,其中ShouldPanic系列的Assertions提供了优雅的在测试用例中测试Golang panic的方法。

GoConvey初步用法