diff --git a/single_header/boost/fakeit.hpp b/single_header/boost/fakeit.hpp index 34956d3..4e858ad 100644 --- a/single_header/boost/fakeit.hpp +++ b/single_header/boost/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:02.231489 + * Generated: 2021-10-01 16:03:49.810624 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/catch/fakeit.hpp b/single_header/catch/fakeit.hpp index 86589cd..80f971b 100644 --- a/single_header/catch/fakeit.hpp +++ b/single_header/catch/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:07.158580 + * Generated: 2021-10-01 16:04:08.517475 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/gtest/fakeit.hpp b/single_header/gtest/fakeit.hpp index e17b3f5..ecca04f 100644 --- a/single_header/gtest/fakeit.hpp +++ b/single_header/gtest/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:11.532656 + * Generated: 2021-10-01 16:04:12.631228 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/mettle/fakeit.hpp b/single_header/mettle/fakeit.hpp index 798d986..c240907 100644 --- a/single_header/mettle/fakeit.hpp +++ b/single_header/mettle/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:17.340960 + * Generated: 2021-10-01 16:04:17.649742 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -920,7 +920,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/mstest/fakeit.hpp b/single_header/mstest/fakeit.hpp index f2bbcf3..2ced89e 100644 --- a/single_header/mstest/fakeit.hpp +++ b/single_header/mstest/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:56:54.208283 + * Generated: 2021-10-01 16:04:20.998493 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/qtest/fakeit.hpp b/single_header/qtest/fakeit.hpp index e28f773..d75dae7 100644 --- a/single_header/qtest/fakeit.hpp +++ b/single_header/qtest/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:21.353307 + * Generated: 2021-10-01 16:04:25.650936 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/standalone/fakeit.hpp b/single_header/standalone/fakeit.hpp index a1172b4..f1b6307 100644 --- a/single_header/standalone/fakeit.hpp +++ b/single_header/standalone/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:56:50.368202 + * Generated: 2021-10-01 16:04:29.946539 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -920,7 +920,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; } diff --git a/single_header/tpunit/fakeit.hpp b/single_header/tpunit/fakeit.hpp index 9ea3e15..a205d1c 100644 --- a/single_header/tpunit/fakeit.hpp +++ b/single_header/tpunit/fakeit.hpp @@ -2,7 +2,7 @@ /* * FakeIt - A Simplified C++ Mocking Framework * Copyright (c) Eran Pe'er 2013 - * Generated: 2018-06-26 18:57:26.196403 + * Generated: 2021-10-01 16:04:36.316239 * Distributed under the MIT License. Please refer to the LICENSE file at: * https://github.com/eranpeer/FakeIt */ @@ -921,7 +921,8 @@ namespace fakeit { for (unsigned int i = 0; i < max_size; i++) { out << " "; auto invocation = actualSequence[i]; - out << invocation->format(); + + out << invocation->getMethod().name(); if (i < max_size - 1) out << std::endl; }