Created
December 7, 2016 02:03
-
-
Save elbrujohalcon/3e2e3ccb6903424f8d738dc910d4bde9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(spts_coverage_SUITE). | |
-author('[email protected]'). | |
-include_lib("mixer/include/mixer.hrl"). | |
-mixin([ | |
{spts_test_utils, | |
[ init_per_suite/1 | |
, end_per_suite/1 | |
]} | |
]). | |
-export([ all/0 | |
, spts_web/1 | |
, spts_hdp_game_handler/1 | |
, … % more functions, one per function lacking coverage | |
]). | |
-dialyzer([no_opaque, no_fail_call, no_return]). | |
-spec all() -> [atom()]. | |
all() -> spts_test_utils:all(?MODULE). | |
-spec spts_hdp_game_handler(spts_test_utils:config()) -> {comment, []}. | |
spts_hdp_game_handler(_Config) -> | |
ct:comment("spts_hdp_game_handler:code_change"), | |
{ok, state} = spts_hdp_game_handler:code_change(oldvsn, state, extra), | |
{comment, ""}. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment