2021-10-13 cage

        * src/classes/clunit-test-suite.lisp,
        * src/functions/test-suite-functions.lisp,
        * src/macros/deffixture.lisp,
        * src/macros/deftest.lisp,
        * src/specials.lisp:

        - fixed macro 'deffixture'.

2021-08-21  cage

        * src/macros/assertion-macros.lisp:

	- fixed assertion test: 'assert-equality*'.

2021-06-12  cage

        * src/classes/clunit-test-report.lisp,
        * src/functions/assertion-functions.lisp,
        * src/functions/test-case-functions.lisp,
        * src/report-formats/report-format-default.lisp,
        * src/report-formats/report-format-tap.lisp:

	- used an array instead of a list to store test's assertions.

2021-06-11  cage

        * src/macros/assertion-macros.lisp:

	- improved reporting in assert-condition.

2021-06-07  cage

        * src/macros/defsuite.lisp,
	* src/macros/deftest.lisp:

	- wrapped macro in 'eval-when'.

2021-06-07  cage

        * src/macros/assertion-macros.lisp,
	* src/macros/defsuite.lisp:

	- fixed failed assertion reporting (the reporting string did not
        took into account multiple values).

2021-06-06  cage

        * README.org,
	* README.txt:

	- marking this branch as experimental.

2021-06-05  cage

        * src/functions/test-case-functions.lisp,
        * src/functions/utilities.lisp,
	* src/macros/deftest.lisp:

	- added missing file;
	- renamed a function with a name that can be misunderstood.

2021-06-05  cage

        * src/functions/test-suite-functions.lisp:

	- fixed wrong name in docstrings.

2021-06-05  cage

        * clunit2.asd,
	* src/macros/defsuite.lisp,
	* src/macros/deftest.lisp:

	- refactored a couple of macros.

2021-06-05  cage

        * src/macros/deftest.lisp:

	- fixed wrong quasiquoting in 'deftest'.

2021-06-05  cage

        * src/macros/assertion-macros.lisp,
	* src/macros/defsuite.lisp,
        * src/macros/deftest.lisp:

	- moving, as much i am able to do, runtime operation to
        macroexpansion time in macro 'deffixture';
	- removed error in 'assertion-expander' with more checking for type
        of 'result'.

2021-06-03 cage

	* src/macros/assertion-macros.lisp,

	- Equality assertion can test multiple-values as, for example:

	(assert-equal (values 1 2) (values 1 3)); => fails

	-  printed failed  test results  using "~s",  not "~a",  in format
	control string, when using default report style.

2020-08-18 cage, jgodbout

	[cage]

	- Cleaned sources;
	- improved tests progress output appearance in CCL and ABCL;
	- added the variable *test-output-stream*; the value must be an output
	  stream (default *standard-output*) where  all the tests results will
          be printed.
	- removing percentages for cumulative tests results
	  Rounding of  percentage can give,  for example, 100%  of passed
	  tests  when actually  a  few failed  or resulted  in  one or  more
	  errors;
	- added the variable *test-output-stream*; the value must be an output
	  stream (default *standard-output*) where  all the tests results will
	  be printed.

	[jgodbout]

	- Fix documentation xml  file, adding conditions and documentation
	for run-suite-condition signal
        - Tabbify changelog
	- Switch the output of test suite information with signal

2020-08-02 jgodbout

	- Added a signal for test run failure.

2018-04-15 cage

	- Forked repository
