• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A lambda-based C++ unit-testing framework.


Commit MetaInfo

Revision98013252b75b8b6c2aa54ba96b54c2bad2afbcdc (tree)
Zeit2020-01-23 19:57:57
AutorKaz Nishimura <kazssym@linu...>
CommiterKaz Nishimura

Log Message

Add comments

Ändern Zusammenfassung

Diff

diff -r fe2140343471 -r 98013252b75b libcppunitx/bits/cppunitx/test.h
--- a/libcppunitx/bits/cppunitx/test.h Thu Jan 23 12:51:08 2020 +0900
+++ b/libcppunitx/bits/cppunitx/test.h Thu Jan 23 19:57:57 2020 +0900
@@ -16,6 +16,9 @@
1616 //
1717 // SPDX-License-Identifier: GPL-3.0-or-later
1818
19+// This header defines classes to specify test cases, before- and after-test
20+// procedures in a test fixture.
21+
1922 #ifndef _CPPUNITX_TEST_H
2023 #define _CPPUNITX_TEST_H 1
2124
@@ -26,6 +29,8 @@
2629 namespace cppunitx
2730 {
2831 /// Object to specify a test case.
32+ ///
33+ /// This class is equivalent to the '@Test' annotation of JUnit.
2934 class _CPPUNITX_PUBLIC Test
3035 {
3136 private:
@@ -50,6 +55,8 @@
5055 };
5156
5257 /// Object to specify a before-test procedure.
58+ ///
59+ /// This class is equivalent to the '@Before' annotation of JUnit.
5360 class _CPPUNITX_PUBLIC Before
5461 {
5562 private:
@@ -67,6 +74,8 @@
6774 };
6875
6976 /// Object to specify an after-test procedure.
77+ ///
78+ /// This class is equivalent to the '@After' annotation of JUnit.
7079 class _CPPUNITX_PUBLIC After
7180 {
7281 private: