Tagged Questions
EUnit is a Lightweight Unit Testing Framework for Erlang
3
votes
2answers
344 views
Erlang, eunit and gen_server: context cleanup failed
I wrote some eunit test on my gen_server:
-module(st_db_tests).
-include_lib("eunit/include/eunit.hrl").
main_test_() ->
{foreach,
fun setup/0,
fun cleanup/1,
[
fun ...
2
votes
2answers
83 views
EUnit fails to test private functions
I'm writing EUnit tests for Erlang code.
I have a source module:
-module(prob_list).
-export([intersection/2,union/2]).
probability([], _Item) -> false;
probability([{First,Probability}|Rest], ...
1
vote
2answers
117 views
How to integrate erlang unit tests in hudson?
I spent a bit time on this work item ( here , I called it work item ).--- How to integrate the erlang unit test in hudson?
after doing some research, I felt I found the way to resolve this:
...
0
votes
1answer
46 views
Is there a way of only running unit tests in a single module using Eunit in erlang?
I have a number of modules with unit tests.
Is there a way of only running unit tests in a single module.
This is what the relevant section of the module looks like:
-export([ ..... ])
...
0
votes
1answer
57 views
How to use Eunit:test() generate a xml file which include some compling info
I have some erlang file(.erl).And I compile them. Now I want to use some function to generate a xml which is about the compling info of these files.
Here is a address,
...