Skip to content

Commit a61ed31

Browse files
committed
Updated header file comments
1 parent 1aba90d commit a61ed31

6 files changed

+20
-20
lines changed

include/cmock/cmock-function-class-mockers.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// pump.py cmock-function-class-mockers.h.pump
33
// DO NOT EDIT BY HAND!!!
44

5-
// Copyright 2013, Hubert Jagodziński
5+
// Copyright 2021, Hubert Jagodziński
66
// All rights reserved.
77
//
88
// Redistribution and use in source and binary forms, with or without
@@ -30,10 +30,10 @@
3030
//
3131
// Author: [email protected] (Hubert Jagodziński)
3232

33-
// C Mock - extension to Google Mock framework allowing for writing C mock
34-
// functions.
33+
// C Mock - Google Mock's extension allowing a function mocking.
3534
//
36-
// This file implements C function mockers of various arities.
35+
// This file implements CMockMocker class and CMOCK_MOCK_FUNCTIONn() macros of
36+
// various arities.
3737

3838
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_CLASS_MOCKERS_H_
3939
#define CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_CLASS_MOCKERS_H_

include/cmock/cmock-function-class-mockers.h.pump

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $$ cmock-function-mockers.h. Pump (pump.py) can be found in
44
$$ googletest/scripts.
55
$$
66
$var n = 10 $$ The maximum arity we support.
7-
// Copyright 2013, Hubert Jagodziński
7+
// Copyright 2021, Hubert Jagodziński
88
// All rights reserved.
99
//
1010
// Redistribution and use in source and binary forms, with or without
@@ -32,9 +32,9 @@ $var n = 10 $$ The maximum arity we support.
3232
//
3333
// Author: [email protected] (Hubert Jagodziński)
3434

35-
// C Mock - extension to Google Mock framework allowing for writing C mock functions.
35+
// C Mock - Google Mock's extension allowing a function mocking.
3636
//
37-
// This file implements C function mockers of various arities.
37+
// This file implements CMockMocker class and CMOCK_MOCK_FUNCTIONn() macros of various arities.
3838

3939
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_CLASS_MOCKERS_H_
4040
#define CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_CLASS_MOCKERS_H_

include/cmock/cmock-function-mockers.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// pump.py cmock-function-mockers.h.pump
33
// DO NOT EDIT BY HAND!!!
44

5-
// Copyright 2013, Hubert Jagodziński
5+
// Copyright 2021, Hubert Jagodziński
66
// All rights reserved.
77
//
88
// Redistribution and use in source and binary forms, with or without
@@ -30,10 +30,10 @@
3030
//
3131
// Author: [email protected] (Hubert Jagodziński)
3232

33-
// C Mock - extension to Google Mock framework allowing for writing C mock
34-
// functions.
33+
// C Mock - Google Mock's extension allowing a function mocking.
3534
//
36-
// This file implements C function mockers of various arities.
35+
// This file implements DECLARE_FUNCTION_MOCKn() and IMPLEMENT_FUNCTION_MOCKn()
36+
// macros of various arities.
3737

3838
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_MOCKERS_H_
3939
#define CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_MOCKERS_H_

include/cmock/cmock-function-mockers.h.pump

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $$ cmock-function-mockers.h. Pump (pump.py) can be found in
44
$$ googletest/scripts.
55
$$
66
$var n = 10 $$ The maximum arity we support.
7-
// Copyright 2013, Hubert Jagodziński
7+
// Copyright 2021, Hubert Jagodziński
88
// All rights reserved.
99
//
1010
// Redistribution and use in source and binary forms, with or without
@@ -32,9 +32,9 @@ $var n = 10 $$ The maximum arity we support.
3232
//
3333
// Author: [email protected] (Hubert Jagodziński)
3434

35-
// C Mock - extension to Google Mock framework allowing for writing C mock functions.
35+
// C Mock - Google Mock's extension allowing a function mocking.
3636
//
37-
// This file implements C function mockers of various arities.
37+
// This file implements DECLARE_FUNCTION_MOCKn() and IMPLEMENT_FUNCTION_MOCKn() macros of various arities.
3838

3939
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_MOCKERS_H_
4040
#define CMOCK_INCLUDE_CMOCK_CMOCK_FUNCTION_MOCKERS_H_

include/cmock/cmock-spec-builders.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013, Hubert Jagodziński
1+
// Copyright 2021, Hubert Jagodziński
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms, with or without
@@ -26,9 +26,9 @@
2626
//
2727
// Author: [email protected] (Hubert Jagodziński)
2828

29-
// C Mock - extension to Google Mock framework allowing for writing C mock functions.
29+
// C Mock - Google Mock's extension allowing a function mocking.
3030
//
31-
// This file implements the ON_FUNCTION_CALL() and EXPECT_FUNCTION_CALL() macros.
31+
// This file implements ON_FUNCTION_CALL() and EXPECT_FUNCTION_CALL() macros.
3232

3333
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_SPEC_BUILDERS_H_
3434
#define CMOCK_INCLUDE_CMOCK_CMOCK_SPEC_BUILDERS_H_

include/cmock/cmock.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013, Hubert Jagodziński
1+
// Copyright 2021, Hubert Jagodziński
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms, with or without
@@ -26,9 +26,9 @@
2626
//
2727
// Author: [email protected] (Hubert Jagodziński)
2828

29-
// C Mock - extension to Google Mock framework allowing for writing C mock functions.
29+
// C Mock - Google Mock's extension allowing a function mocking.
3030
//
31-
// This is the main header file a user should include.
31+
// This is the main header file an user should include.
3232

3333
#ifndef CMOCK_INCLUDE_CMOCK_CMOCK_H_
3434
#define CMOCK_INCLUDE_CMOCK_CMOCK_H_

0 commit comments

Comments
 (0)