Skip to content
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
dae0892
Preparation of mock library in order to add support for expected call…
Jun 21, 2016
ed56f39
Basic implementation of "multi-matching" expectedCalls.
Jun 26, 2016
8ee564a
Added C language new calls for multi-matching expected calls.
Jun 26, 2016
0d2a162
Removed MockExpectedCallComposite.
Jun 26, 2016
e94cd93
Added test that checks that non-fulfilled calls have higher matching …
Jun 27, 2016
f42377e
When creating the list of potentially matching expected calls, non-fu…
Jun 27, 2016
162d117
Renamed MockExpectedCallsDidntHappenFailure to MockExpectedCallsNotFu…
Jun 27, 2016
94c5c69
Re-enabled strict ordering checks when the expected calls have no opt…
Jun 27, 2016
84593a9
Fixed declaration of MockExpectedCallsListForTest::addFunction to avo…
Jun 27, 2016
49f3b7d
Fixed declaration of call order related methods and attributes to use…
Jun 27, 2016
60828dc
Updated some unit tests and added a new one to improve code coverage.
Jun 28, 2016
a12e83b
Modified MockSupport::expectNoCall() method implementation to use a m…
Jun 28, 2016
6b5db95
Removed superfluous constructor and method in MockExpectedCall that w…
Jun 28, 2016
412ca5e
Fixed the mock scope not being properly reported when failing because…
Jun 30, 2016
a80efda
Added a class to store a queue of actual calls, needed to add a log o…
Jul 3, 2016
0f4623a
Modified MockCheckedActualCall to store a reference to its associated…
Jul 3, 2016
bc33181
Added functionality to MockCheckedActualCall and MockActualCallsQueue…
Jul 3, 2016
044a693
Added actual calls reporting to MockFailure, and preliminary non-func…
Jul 4, 2016
b3a20a4
Fixed compilation for Dos platform.
Jul 4, 2016
eb3aae1
Implemented a log of actual calls in MockSupport, such that mock fail…
Jul 5, 2016
fb5653f
Added functionality to MockSupport to limit the maximum size of the a…
Jul 5, 2016
3999548
Added C language new call for setMaxCallLogSize.
Jul 5, 2016
faf07f9
Added unit test for MockActualCallsList::hasFinalizedMatchingExpectat…
Jul 5, 2016
e912650
Improved unit test for MockSupport::setMaxCallLogSize().
Jul 7, 2016
111f0f0
Improved unit tests for MockExpectedCall.
Jul 7, 2016
ef47ef7
Removed old commented code that was left over.
Jul 7, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed compilation for Dos platform.
  • Loading branch information
Jesús González committed Jul 4, 2016
commit b3a20a45aeda63320790ec849508d51219ecdfbb
4 changes: 3 additions & 1 deletion platforms/Dos/sources.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ CPPUX_OBJECTS := \
$(CPPUTEST_HOME)/src/CppUTestExt/OrderedTest.o \
$(CPPUTEST_HOME)/src/CppUTestExt/MemoryReportFormatter.o \
$(CPPUTEST_HOME)/src/CppUTestExt/MockExpectedCallsList.o \
$(CPPUTEST_HOME)/src/CppUTestExt/MockActualCallsQueue.o \
$(CPPUTEST_HOME)/src/CppUTestExt/MockSupport.o \

CPPU1_OBJECTS := \
Expand Down Expand Up @@ -107,13 +108,14 @@ CPPU6_OBJECTS := \
$(CPPUTEST_HOME)/tests/CppUTestExt/AllTests.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockFailureReporterForTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/ExpectedFunctionsListTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/ActualCallsQueueTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockCallTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockComparatorCopierTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockHierarchyTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockParameterTest.o \
$(CPPUTEST_HOME)/tests/TestUTestStringMacro.o \

CPPU7_OBJECTS := \
CPPU7_OBJECTS := \
$(CPPUTEST_HOME)/tests/CppUTestExt/AllTests.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/MockFailureReporterForTest.o \
$(CPPUTEST_HOME)/tests/CppUTestExt/IEEE754PluginTest.o \
Expand Down