Updated test cases documentation

This commit is contained in:
Bartek Kryza
2021-08-03 23:48:37 +02:00
parent 55f1cc0298
commit beeb621140
13 changed files with 41 additions and 40 deletions

View File

@@ -35,9 +35,9 @@ public:
A(const A &) = default;
virtual ~A() = default;
void basic_method() {}
void basic_method() { }
static int static_method() { return 0; }
void const_method() const {}
void const_method() const { }
auto auto_method() { return 1; }
auto double_int(const int i) { return 2 * i; }
@@ -57,7 +57,7 @@ public:
static const auto auto_member{10UL};
protected:
void protected_method() {}
void protected_method() { }
int protected_member;
@@ -66,7 +66,7 @@ protected:
};
private:
void private_method() {}
void private_method() { }
int private_member;
int a, b, c;