├── .gitignore ├── 3rdparty ├── fake_boost │ ├── config │ │ ├── general.h │ │ └── platdef.h │ ├── fake_boost.h │ └── type │ │ ├── typeof.h │ │ └── typetools.h └── msinttypes │ ├── inttypes.h │ └── stdint.h ├── CMakeLists.txt ├── COPYING ├── ExportLite.ps1 ├── HEADER ├── Makefile ├── ProjectVar.txt ├── README.md ├── TODO.md ├── clean.bat ├── docs ├── AdvancedGuideOfMockcpp.md ├── BuildGuide ├── BuildSystemDescription.md ├── ChineseVersionManual.md ├── CxxTestingTips.md ├── EnglishManual.md ├── FeatureTracking.md ├── INSTALL ├── Installation.md ├── OnGoingFeatures.md ├── ProjectHome.md ├── SimpleUserInstruction_zh.md ├── SoftwareArchitecture.md ├── UpdateHistory.md └── images │ └── 2021-03-14-09-55-56.png ├── include └── mockcpp │ ├── AfterMatchBuilder.h │ ├── AfterMatchBuilder.tcc │ ├── AfterMatcher.h │ ├── ApiHook.h │ ├── ApiHookFunctor.h │ ├── ApiHookGenerator.h │ ├── ApiHookHolder.h │ ├── ApiHookHolderFactory.h │ ├── ApiHookKey.h │ ├── ApiHookMocker.h │ ├── ArgumentsList.h │ ├── ArgumentsMacroHelpers.h │ ├── ArgumentsMatchBuilder.h │ ├── ArgumentsMatchBuilder.tcc │ ├── Asserter.h │ ├── AssertionFailedError.h │ ├── BeforeMatchBuilder.h │ ├── BeforeMatchBuilder.tcc │ ├── BeforeMatcher.h │ ├── CallerMatchBuilder.h │ ├── CallerMatchBuilder.tcc │ ├── CallerMatcher.h │ ├── ChainableMockMethod.h │ ├── ChainableMockMethodContainer.h │ ├── ChainableMockMethodCore.h │ ├── ChainableMockMethodIndexKey.h │ ├── ChainableMockMethodKey.h │ ├── ChainableMockMethodNameKey.h │ ├── ChainableMockObject.h │ ├── ChainableMockObjectBase.h │ ├── ChainingMockHelper.h │ ├── CheckWith.h │ ├── CodeModifier.h │ ├── Constraint.h │ ├── ConstraintSet.h │ ├── DecoratedConstraint.h │ ├── DefaultBuilder.h │ ├── DefaultMatcher.h │ ├── DefaultStub.h │ ├── DelegatedMethod.h │ ├── DelegatedMethodGetter.h │ ├── DestructorChecker.h │ ├── DieStub.h │ ├── DummyBuilder.h │ ├── EqualityUtil.h │ ├── Exception.h │ ├── ExpectsMatcher.h │ ├── Formatter.h │ ├── Functor.h │ ├── GenericMethodIndicesChecker.h │ ├── GlobalMockObject.h │ ├── GnuMethodIndicesChecker.h │ ├── GnuMethodInfoReader.h │ ├── HookMockObject.h │ ├── IdentityBuilder.h │ ├── Ignore.h │ ├── IgnoreHandler.h │ ├── IgnoreResultHandler.h │ ├── IgnoreResultHandlerFactory.h │ ├── IgnoreReturnStub.h │ ├── IncrementStub.h │ ├── IndexInvokableGetter.h │ ├── InterfaceInfo.h │ ├── Invocation.h │ ├── InvocationId.h │ ├── InvocationMockBuilder.h │ ├── InvocationMockBuilder.tcc │ ├── InvocationMockBuilderGetter.h │ ├── InvocationMocker.h │ ├── InvocationMockerContainer.h │ ├── InvocationMockerNamespace.h │ ├── InvocationMockerSet.h │ ├── InvocationTimesMatcher.h │ ├── InvocationWithReturnType.h │ ├── Invokable.h │ ├── InvokedAtLeast.h │ ├── InvokedAtMost.h │ ├── InvokedExactly.h │ ├── InvokedOnce.h │ ├── InvokedTimesMatcher.h │ ├── InvokedTimesReader.h │ ├── InvokedTimesRecorder.h │ ├── IsAnything.h │ ├── IsAnythingHelper.h │ ├── IsConst.h │ ├── IsEqual.h │ ├── IsGreaterThan.h │ ├── IsLessThan.h │ ├── IsMirror.h │ ├── IsNotEqual.h │ ├── IsRef.h │ ├── IsStringContains.h │ ├── IsStringEndWith.h │ ├── IsStringStartWith.h │ ├── JmpCode.h │ ├── Matcher.h │ ├── Method.h │ ├── MethodIndiceChecker.h │ ├── MethodInfoReader.h │ ├── MethodTypeTraits.h │ ├── MismatchResultHandler.h │ ├── MismatchResultHandlerFactory.h │ ├── MockBuilder.h │ ├── MockObject.h │ ├── MockObjectBase.h │ ├── MockObjectHelper.h │ ├── MoreStubBuilder.h │ ├── MoreStubBuilder.tcc │ ├── MsvcMethodInfoReader.h │ ├── MsvcRtti.h │ ├── NormalResultHandler.h │ ├── NormalResultHandlerFactory.h │ ├── ObjNameGetter.h │ ├── OrderingMatcher.h │ ├── OutBound.h │ ├── OutBoundPointer.h │ ├── OutputStringStream.h │ ├── ParameterizedApiHookHolder.h │ ├── PendingMatcher.h │ ├── ProcStub.h │ ├── ProcessWith.h │ ├── RepeatMacros.h │ ├── RepeatStub.h │ ├── ReportFailure.h │ ├── Result.h │ ├── ResultHandler.h │ ├── ResultHandlerFactory.h │ ├── ReturnObjectList.h │ ├── ReturnStub.h │ ├── SelfDescribe.h │ ├── SimpleInvocationRecorder.h │ ├── Spy.h │ ├── StatelessMatcher.h │ ├── StringConstraint.h │ ├── StringPredict.h │ ├── Stub.h │ ├── StubBuilder.h │ ├── StubBuilder.tcc │ ├── StubContainer.h │ ├── StubsBuilder.h │ ├── StubsMatcher.h │ ├── TestFailureMatcher.h │ ├── ThenStub.h │ ├── ThrowExceptionStub.h │ ├── TypeString.h │ ├── TypeTraits.h │ ├── TypelessConstraint.h │ ├── TypelessConstraintAdapter.h │ ├── TypelessStub.h │ ├── TypelessStubAdapter.h │ ├── VirtualTable.h │ ├── VirtualTableUtils.h │ ├── Void.h │ ├── VoidResultHandler.h │ ├── VoidResultHandlerFactory.h │ ├── WillStub.h │ ├── mockable.h │ ├── mockcpp.h │ ├── mockcpp.hpp │ ├── mokc.h │ ├── types │ ├── Any.h │ ├── AnyBase.h │ ├── AnyCast.h │ ├── Holder.h │ ├── PlaceHolder.h │ ├── RefAny.h │ ├── RefHolder.h │ └── ValueHolder.h │ └── utils.h ├── src ├── AfterMatcher.cpp ├── Any.cpp ├── AnyBase.cpp ├── AnyCast.cpp ├── ApiHook.cpp ├── ApiHookKey.cpp ├── Asserter.cpp ├── AssertionFailedError.cpp ├── BeforeMatcher.cpp ├── CMakeLists.txt ├── CallerMatcher.cpp ├── ChainableMockMethodContainer.cpp ├── ChainableMockMethodCore.cpp ├── ChainableMockMethodIndexKey.cpp ├── ChainableMockMethodNameKey.cpp ├── ChainableMockObject.cpp ├── ChainableMockObjectBase.cpp ├── ChainingMockHelper.cpp ├── ConstraintSet.cpp ├── DecoratedConstraint.cpp ├── DefaultMatcher.cpp ├── DefaultStub.cpp ├── DelegatedMethodGetter.cpp ├── DieStub.cpp ├── DummyApiHook.cpp ├── Exception.cpp ├── ExpectsMatcher.cpp ├── Formatter.cpp ├── GlobalMockObject.cpp ├── HookMockObject.cpp ├── IdentityBuilder.cpp ├── Ignore.cpp ├── IgnoreResultHandler.cpp ├── IgnoreResultHandlerFactory.cpp ├── IgnoreReturnStub.cpp ├── InterfaceInfo.cpp ├── Invocation.cpp ├── InvocationId.cpp ├── InvocationMockBuilderGetter.cpp ├── InvocationMocker.cpp ├── InvocationMockerSet.cpp ├── InvocationTimesMatcher.cpp ├── InvokedAtLeast.cpp ├── InvokedAtMost.cpp ├── InvokedExactly.cpp ├── InvokedOnce.cpp ├── InvokedTimesMatcher.cpp ├── IsAnythingHelper.cpp ├── IsStringContains.cpp ├── IsStringEndWith.cpp ├── IsStringStartWith.cpp ├── JmpCode.cpp ├── JmpCodeArch.h ├── JmpCodeX64.h ├── JmpCodeX86.h ├── JmpOnlyApiHook.cpp ├── JmpOnlyApiHook.h ├── MethodIndiceChecker.cpp ├── MismatchResultHandler.cpp ├── MismatchResultHandlerFactory.cpp ├── MockObjectBase.cpp ├── NormalResultHandler.cpp ├── NormalResultHandlerFactory.cpp ├── OutBoundPointer.cpp ├── PendingMatcher.cpp ├── ProcStub.cpp ├── RefAny.cpp ├── RepeatStub.cpp ├── Result.cpp ├── ReturnObjectList.cpp ├── ReturnStub.cpp ├── SimpleInvocationRecorder.cpp ├── StringConstraint.cpp ├── StubContainer.cpp ├── StubsMatcher.cpp ├── TestFailureMatcher.cpp ├── ThenStub.cpp ├── TypeString.cpp ├── TypelessConstraintAdapter.cpp ├── TypelessStubAdapter.cpp ├── UnixCodeModifier.cpp ├── VirtualTable.cpp ├── VirtualTableUtils.cpp ├── VoidResultHandler.cpp ├── VoidResultHandlerFactory.cpp ├── WillStub.cpp ├── WinCodeModifier.cpp ├── generate_arg_related_files.py ├── generate_vtbl_related_files.py ├── get_long_opt.py └── ports │ └── failure │ ├── catch2_report_failure.cpp │ ├── cppunit_report_failure.cpp │ ├── cpputest_report_failure.cpp │ ├── gtest_report_failure.cpp │ └── stdexcept_report_failure.cpp ├── tests ├── 3rdparty │ └── testngpp │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ExportLite.ps1 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── ProjectVar.txt │ │ ├── build.ps1 │ │ ├── build.sh │ │ ├── build_install.ps1 │ │ ├── build_install.sh │ │ ├── change-name.sh │ │ ├── docs │ │ ├── BuildGuide │ │ ├── ChineseUserManual.md │ │ ├── InstallationMSVC.md │ │ ├── ProjectHome.md │ │ ├── SimpleUserInstruction_zh.md │ │ ├── UpdateHistory.md │ │ ├── testngpp-msvc.pdf │ │ └── testngpp中文指导.docx │ │ ├── include │ │ ├── cxxtest │ │ │ └── TestSuite.h │ │ ├── ltdl.h │ │ ├── mem_checker │ │ │ ├── bool_array.h │ │ │ ├── check_status.h │ │ │ ├── class_level_lock.h │ │ │ ├── cont_ptr_utils.h │ │ │ ├── debug_new.h │ │ │ ├── fast_mutex.h │ │ │ ├── fixed_mem_pool.h │ │ │ ├── format.h │ │ │ ├── interface_4cuser.h │ │ │ ├── interface_4cxxuser.h │ │ │ ├── interface_4user.h │ │ │ ├── interface_4xunit.h │ │ │ ├── mem_pool_base.h │ │ │ ├── object_level_lock.h │ │ │ ├── pctimer.h │ │ │ ├── reporter.h │ │ │ ├── set_assign.h │ │ │ ├── static_assert.h │ │ │ └── static_mem_pool.h │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ ├── testcpp │ │ │ └── testcpp.hpp │ │ └── testngpp │ │ │ ├── Any.h │ │ │ ├── Asserter.h │ │ │ ├── Backward.h │ │ │ ├── DataDrivenDef.h │ │ │ ├── NoThrowsReporter.h │ │ │ ├── TestDefMacros.h │ │ │ ├── TestFixture.h │ │ │ ├── TestModule.h │ │ │ ├── TypeTraits.h │ │ │ ├── comm │ │ │ ├── ExceptionKeywords.h │ │ │ ├── PipeReadableChannel.h │ │ │ ├── PipeWrittableChannel.h │ │ │ ├── ReadableChannel.h │ │ │ ├── Win32PipeReadableChannel.h │ │ │ ├── Win32PipeWrittableChannel.h │ │ │ └── WrittableChannel.h │ │ │ ├── internal │ │ │ ├── AssertionFailure.h │ │ │ ├── DataDriven.h │ │ │ ├── Error.h │ │ │ ├── Exception.h │ │ │ ├── Info.h │ │ │ ├── MemChecker.h │ │ │ ├── Taggable.h │ │ │ ├── TagsFilterRule.h │ │ │ ├── TestCase.h │ │ │ ├── TestCaseInfoReader.h │ │ │ ├── TestFixtureDesc.h │ │ │ ├── TestFixtureInfoReader.h │ │ │ ├── TestSuiteDesc.h │ │ │ ├── TestSuiteInfoReader.h │ │ │ └── Warning.h │ │ │ ├── listener │ │ │ ├── MemLeakCountCollector.h │ │ │ ├── TagsFilterResultCollector.h │ │ │ ├── TestCaseListener.h │ │ │ ├── TestCaseResultCollector.h │ │ │ ├── TestCaseResultReporter.h │ │ │ ├── TestFixtureResultCollector.h │ │ │ ├── TestListener.h │ │ │ ├── TestResultCollector.h │ │ │ ├── TestResultReporter.h │ │ │ ├── TestSuiteListener.h │ │ │ ├── TestSuiteResultCollector.h │ │ │ └── TestSuiteResultReporter.h │ │ │ ├── runner │ │ │ ├── AndCompositeTaggableFilter.h │ │ │ ├── EOFError.h │ │ │ ├── EmptyTagsFilter.h │ │ │ ├── EnvironmentCleaner.h │ │ │ ├── FixtureTagsFilter.h │ │ │ ├── GeneralTagsFilter.h │ │ │ ├── GeneralTestFilter.h │ │ │ ├── MatchAllTagsFilter.h │ │ │ ├── NameMatcher.h │ │ │ ├── NotCompositeTaggableFilter.h │ │ │ ├── OrCompositeTaggableFilter.h │ │ │ ├── OrCompositeTestFilter.h │ │ │ ├── PosixFNMatcher.h │ │ │ ├── ResourceCheckPoint.h │ │ │ ├── Sandbox.h │ │ │ ├── SandboxHandler.h │ │ │ ├── SandboxProcessor.h │ │ │ ├── SandboxTypedef.h │ │ │ ├── SandboxTypedefUnix.h │ │ │ ├── SimpleTestCaseResultReporter.h │ │ │ ├── SimpleTestCaseRunner.h │ │ │ ├── SimpleTestHierarchyRunner.h │ │ │ ├── SimpleTestResultDispatcher.h │ │ │ ├── SimpleTestResultManager.h │ │ │ ├── SimpleTestResultReporter.h │ │ │ ├── SimpleTestSuiteResultReporter.h │ │ │ ├── SmartTestCaseResultCollector.h │ │ │ ├── TaggableObjFilter.h │ │ │ ├── TagsFilters.h │ │ │ ├── TagsParser.h │ │ │ ├── TestCaseContainer.h │ │ │ ├── TestCaseFilter.h │ │ │ ├── TestCaseHierarchy.h │ │ │ ├── TestCaseResultDispatcher.h │ │ │ ├── TestCaseRunner.h │ │ │ ├── TestCaseRunnerFactory.h │ │ │ ├── TestCaseSandbox.h │ │ │ ├── TestCaseSandboxHandler.h │ │ │ ├── TestCaseSandboxResultDecoder.h │ │ │ ├── TestCaseSandboxResultReporter.h │ │ │ ├── TestFilter.h │ │ │ ├── TestFilterFactory.h │ │ │ ├── TestFixtureContext.h │ │ │ ├── TestFixtureRunner.h │ │ │ ├── TestFixtureRunnerFactory.h │ │ │ ├── TestHierarchyHandler.h │ │ │ ├── TestHierarchyRunner.h │ │ │ ├── TestHierarchySandboxRunner.h │ │ │ ├── TestResultDispatcher.h │ │ │ ├── TestResultManager.h │ │ │ ├── TestRunner.h │ │ │ ├── TestRunnerContext.h │ │ │ ├── TestSuiteContext.h │ │ │ ├── TestSuiteDescEntryNameGetter.h │ │ │ ├── TestSuiteResultDispatcher.h │ │ │ ├── TestSuiteRunner.h │ │ │ ├── WildcardTestFilter.h │ │ │ └── loaders │ │ │ │ ├── DLModuleLoader.h │ │ │ │ ├── LTModuleLoader.h │ │ │ │ ├── ModuleLoader.h │ │ │ │ ├── ModuleLoaderFactory.h │ │ │ │ ├── ModuleTestListenerLoader.h │ │ │ │ ├── ModuleTestListenerLoaderFactory.h │ │ │ │ ├── ModuleTestSuiteLoader.h │ │ │ │ ├── ModuleTestSuiteLoaderFactory.h │ │ │ │ ├── TestListenerLoader.h │ │ │ │ ├── TestListenerLoaderFactory.h │ │ │ │ ├── TestSuiteLoader.h │ │ │ │ ├── TestSuiteLoaderFactory.h │ │ │ │ └── Win32DllModuleLoader.h │ │ │ ├── testngpp.h │ │ │ ├── testngpp.hpp │ │ │ ├── utils │ │ │ ├── ConsoleState.h │ │ │ ├── Formatter.h │ │ │ ├── InternalError.h │ │ │ ├── OptionList.h │ │ │ ├── StringList.h │ │ │ ├── StringToOptions.h │ │ │ ├── StupidTimer.h │ │ │ └── TypeString.h │ │ │ └── win32 │ │ │ ├── Win32Sandbox.h │ │ │ ├── Win32TestCaseRunnerResultReporter.h │ │ │ ├── Win32TestCaseSandbox.h │ │ │ ├── Win32TestHierarchySandboxRunner.h │ │ │ └── Win32ThrowLastError.h │ │ ├── premake4.exe │ │ ├── samples │ │ ├── CMakeLists.txt │ │ ├── TestBar.h │ │ ├── TestCxxTest.h │ │ ├── TestFoo.h │ │ ├── TestMemLeak.h │ │ ├── run-sample.bat.in │ │ └── run-sample.in │ │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── premake4.lua │ │ ├── pycompile.py │ │ ├── setup.py │ │ ├── setup_linux.py │ │ ├── testngppgen.py │ │ └── testngppgen │ │ │ ├── AnnotationParser.py │ │ │ ├── ClassDeclParser.py │ │ │ ├── DataProvider.py │ │ │ ├── DataProviderParser.py │ │ │ ├── ElemParser.py │ │ │ ├── Fixture.py │ │ │ ├── FixtureParser.py │ │ │ ├── Generator.py │ │ │ ├── LogicalLine.py │ │ │ ├── Message.py │ │ │ ├── Name.py │ │ │ ├── Output.py │ │ │ ├── Phase0.py │ │ │ ├── Phase1.py │ │ │ ├── Phase1Result.py │ │ │ ├── Phase2.py │ │ │ ├── Phase3.py │ │ │ ├── Phase4.py │ │ │ ├── PreprocessScope.py │ │ │ ├── PreprocessScopeParser.py │ │ │ ├── Process.py │ │ │ ├── TagsParser.py │ │ │ ├── TestCase.py │ │ │ ├── TestCaseParser.py │ │ │ ├── TestScope.py │ │ │ ├── Useless.py │ │ │ ├── Utils.py │ │ │ └── __init__.py │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Formatter.cpp │ │ ├── MemChecker.cpp │ │ ├── TestCase.cpp │ │ ├── TestFixture.cpp │ │ ├── TestSuiteDesc.cpp │ │ ├── TypeString.cpp │ │ ├── except │ │ │ ├── AssertionFailure.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── Exception.cpp │ │ ├── listeners │ │ │ ├── CMakeLists.txt │ │ │ ├── StdoutTestListener.cpp │ │ │ ├── XMLBuilder.cpp │ │ │ ├── XMLBuilder.h │ │ │ ├── XMLTestListener.cpp │ │ │ └── XMLTestListener.h │ │ ├── mem_checker │ │ │ ├── CMakeLists.txt │ │ │ ├── NoThrowsReporter.cpp │ │ │ ├── bool_array.cpp │ │ │ ├── check_status.cpp │ │ │ ├── debug_new.cpp │ │ │ ├── interface_4xunit.cpp │ │ │ ├── mem_pool_base.cpp │ │ │ ├── reporter.cpp │ │ │ └── static_mem_pool.cpp │ │ ├── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── ResourceCheckPoint.cpp │ │ │ ├── TestRunner.cpp │ │ │ ├── TestRunnerMain.cpp │ │ │ ├── filters │ │ │ │ ├── GeneralTestFilter.cpp │ │ │ │ ├── OrCompositeTestFilter.cpp │ │ │ │ ├── PosixFNMatcher.cpp │ │ │ │ ├── TestFilterFactory.cpp │ │ │ │ ├── WildcardTestFilter.cpp │ │ │ │ ├── Win32Fnmatch.c │ │ │ │ └── Win32Fnmatch.h │ │ │ ├── loaders │ │ │ │ ├── DLModuleLoader.cpp │ │ │ │ ├── DLModuleLoaderFactory.cpp │ │ │ │ ├── LTModuleLoader.cpp │ │ │ │ ├── LTModuleLoaderFactory.cpp │ │ │ │ ├── ModuleTestListenerLoader.cpp │ │ │ │ ├── ModuleTestListenerLoaderFactory.cpp │ │ │ │ ├── ModuleTestSuiteLoader.cpp │ │ │ │ ├── ModuleTestSuiteLoaderFactory.cpp │ │ │ │ ├── Win32DllModuleLoader.cpp │ │ │ │ └── Win32DllModuleLoaderFactory.cpp │ │ │ ├── reports │ │ │ │ ├── SimpleTestCaseResultReporter.cpp │ │ │ │ ├── SimpleTestResultDispatcher.cpp │ │ │ │ ├── SimpleTestResultManager.cpp │ │ │ │ ├── SimpleTestResultReporter.cpp │ │ │ │ ├── SimpleTestSuiteResultReporter.cpp │ │ │ │ └── SmartTestCaseResultCollector.cpp │ │ │ ├── runners │ │ │ │ ├── SimpleTestCaseRunner.cpp │ │ │ │ ├── SimpleTestHierarchyRunner.cpp │ │ │ │ ├── TestCaseHierarchy.cpp │ │ │ │ ├── TestCaseRunnerFactory.cpp │ │ │ │ ├── TestFixtureContext.cpp │ │ │ │ ├── TestFixtureRunner.cpp │ │ │ │ ├── TestFixtureRunnerFactory.cpp │ │ │ │ ├── TestHierarchyHandler.cpp │ │ │ │ ├── TestRunnerContext.cpp │ │ │ │ ├── TestSuiteContext.cpp │ │ │ │ └── TestSuiteRunner.cpp │ │ │ ├── sandbox │ │ │ │ ├── Sandbox.cpp │ │ │ │ ├── SandboxProcessor.cpp │ │ │ │ ├── TestCaseSandbox.cpp │ │ │ │ ├── TestCaseSandboxHandler.cpp │ │ │ │ ├── TestCaseSandboxResultDecoder.cpp │ │ │ │ ├── TestCaseSandboxResultReporter.cpp │ │ │ │ └── TestHierarchySandboxRunner.cpp │ │ │ ├── tags │ │ │ │ ├── AndCompositeTaggableFilter.cpp │ │ │ │ ├── EmptyTagsFilter.cpp │ │ │ │ ├── FixtureTagsFilter.cpp │ │ │ │ ├── GeneralTagsFilter.cpp │ │ │ │ ├── MatchAllTagsFilter.cpp │ │ │ │ ├── NotCompositeTaggableFilter.cpp │ │ │ │ ├── OrCompositeTaggableFilter.cpp │ │ │ │ ├── TagsFilters.cpp │ │ │ │ └── TagsParser.cpp │ │ │ ├── utils │ │ │ │ ├── PipeReadableChannel.cpp │ │ │ │ └── PipeWrittableChannel.cpp │ │ │ └── win32 │ │ │ │ ├── GetLastError.cpp │ │ │ │ ├── TestCaseSandboxRunnerMain.cpp │ │ │ │ ├── Win32PipeReadableChannel.cpp │ │ │ │ ├── Win32PipeWrittableChannel.cpp │ │ │ │ ├── Win32Sandbox.cpp │ │ │ │ ├── Win32TestCaseSandbox.cpp │ │ │ │ └── Win32TestHierarchySandboxRunner.cpp │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── ConsoleState.cpp │ │ │ ├── GetOpt.c │ │ │ ├── GetOpt.h │ │ │ ├── OptionList.cpp │ │ │ ├── StringToOptions.cpp │ │ │ └── StupidTimer.cpp │ │ ├── tests │ │ ├── 3rdparty │ │ │ ├── mockcpp │ │ │ │ ├── include │ │ │ │ │ └── mockcpp │ │ │ │ │ │ ├── AfterMatchBuilder.h │ │ │ │ │ │ ├── AfterMatchBuilder.tcc │ │ │ │ │ │ ├── AfterMatcher.h │ │ │ │ │ │ ├── ApiHook.h │ │ │ │ │ │ ├── ApiHookFunctor.h │ │ │ │ │ │ ├── ApiHookGenerator.h │ │ │ │ │ │ ├── ApiHookHolder.h │ │ │ │ │ │ ├── ApiHookHolderFactory.h │ │ │ │ │ │ ├── ApiHookKey.h │ │ │ │ │ │ ├── ApiHookMocker.h │ │ │ │ │ │ ├── ArgumentsList.h │ │ │ │ │ │ ├── ArgumentsMacroHelpers.h │ │ │ │ │ │ ├── ArgumentsMatchBuilder.h │ │ │ │ │ │ ├── ArgumentsMatchBuilder.tcc │ │ │ │ │ │ ├── Asserter.h │ │ │ │ │ │ ├── AssertionFailedError.h │ │ │ │ │ │ ├── BeforeMatchBuilder.h │ │ │ │ │ │ ├── BeforeMatchBuilder.tcc │ │ │ │ │ │ ├── BeforeMatcher.h │ │ │ │ │ │ ├── CallerMatchBuilder.h │ │ │ │ │ │ ├── CallerMatchBuilder.tcc │ │ │ │ │ │ ├── CallerMatcher.h │ │ │ │ │ │ ├── ChainableMockMethod.h │ │ │ │ │ │ ├── ChainableMockMethodContainer.h │ │ │ │ │ │ ├── ChainableMockMethodCore.h │ │ │ │ │ │ ├── ChainableMockMethodIndexKey.h │ │ │ │ │ │ ├── ChainableMockMethodKey.h │ │ │ │ │ │ ├── ChainableMockMethodNameKey.h │ │ │ │ │ │ ├── ChainableMockObject.h │ │ │ │ │ │ ├── ChainableMockObjectBase.h │ │ │ │ │ │ ├── ChainingMockHelper.h │ │ │ │ │ │ ├── CheckWith.h │ │ │ │ │ │ ├── CodeModifier.h │ │ │ │ │ │ ├── Constraint.h │ │ │ │ │ │ ├── ConstraintSet.h │ │ │ │ │ │ ├── DecoratedConstraint.h │ │ │ │ │ │ ├── DefaultBuilder.h │ │ │ │ │ │ ├── DefaultMatcher.h │ │ │ │ │ │ ├── DefaultStub.h │ │ │ │ │ │ ├── DelegatedMethod.h │ │ │ │ │ │ ├── DelegatedMethodGetter.h │ │ │ │ │ │ ├── DestructorChecker.h │ │ │ │ │ │ ├── DieStub.h │ │ │ │ │ │ ├── DummyBuilder.h │ │ │ │ │ │ ├── EqualityUtil.h │ │ │ │ │ │ ├── Exception.h │ │ │ │ │ │ ├── ExpectsMatcher.h │ │ │ │ │ │ ├── Formatter.h │ │ │ │ │ │ ├── Functor.h │ │ │ │ │ │ ├── GenericMethodIndicesChecker.h │ │ │ │ │ │ ├── GlobalMockObject.h │ │ │ │ │ │ ├── GnuMethodIndicesChecker.h │ │ │ │ │ │ ├── GnuMethodInfoReader.h │ │ │ │ │ │ ├── HookMockObject.h │ │ │ │ │ │ ├── IdentityBuilder.h │ │ │ │ │ │ ├── Ignore.h │ │ │ │ │ │ ├── IgnoreHandler.h │ │ │ │ │ │ ├── IgnoreResultHandler.h │ │ │ │ │ │ ├── IgnoreResultHandlerFactory.h │ │ │ │ │ │ ├── IgnoreReturnStub.h │ │ │ │ │ │ ├── IncrementStub.h │ │ │ │ │ │ ├── IndexInvokableGetter.h │ │ │ │ │ │ ├── InterfaceInfo.h │ │ │ │ │ │ ├── Invocation.h │ │ │ │ │ │ ├── InvocationId.h │ │ │ │ │ │ ├── InvocationMockBuilder.h │ │ │ │ │ │ ├── InvocationMockBuilder.tcc │ │ │ │ │ │ ├── InvocationMockBuilderGetter.h │ │ │ │ │ │ ├── InvocationMocker.h │ │ │ │ │ │ ├── InvocationMockerContainer.h │ │ │ │ │ │ ├── InvocationMockerNamespace.h │ │ │ │ │ │ ├── InvocationMockerSet.h │ │ │ │ │ │ ├── InvocationTimesMatcher.h │ │ │ │ │ │ ├── InvocationWithReturnType.h │ │ │ │ │ │ ├── Invokable.h │ │ │ │ │ │ ├── InvokedAtLeast.h │ │ │ │ │ │ ├── InvokedAtMost.h │ │ │ │ │ │ ├── InvokedExactly.h │ │ │ │ │ │ ├── InvokedOnce.h │ │ │ │ │ │ ├── InvokedTimesMatcher.h │ │ │ │ │ │ ├── InvokedTimesReader.h │ │ │ │ │ │ ├── InvokedTimesRecorder.h │ │ │ │ │ │ ├── IsAnything.h │ │ │ │ │ │ ├── IsAnythingHelper.h │ │ │ │ │ │ ├── IsConst.h │ │ │ │ │ │ ├── IsEqual.h │ │ │ │ │ │ ├── IsGreaterThan.h │ │ │ │ │ │ ├── IsLessThan.h │ │ │ │ │ │ ├── IsMirror.h │ │ │ │ │ │ ├── IsNotEqual.h │ │ │ │ │ │ ├── IsRef.h │ │ │ │ │ │ ├── IsStringContains.h │ │ │ │ │ │ ├── IsStringEndWith.h │ │ │ │ │ │ ├── IsStringStartWith.h │ │ │ │ │ │ ├── JmpCode.h │ │ │ │ │ │ ├── Matcher.h │ │ │ │ │ │ ├── Method.h │ │ │ │ │ │ ├── MethodIndiceChecker.h │ │ │ │ │ │ ├── MethodInfoReader.h │ │ │ │ │ │ ├── MethodTypeTraits.h │ │ │ │ │ │ ├── MismatchResultHandler.h │ │ │ │ │ │ ├── MismatchResultHandlerFactory.h │ │ │ │ │ │ ├── MockBuilder.h │ │ │ │ │ │ ├── MockObject.h │ │ │ │ │ │ ├── MockObjectBase.h │ │ │ │ │ │ ├── MockObjectHelper.h │ │ │ │ │ │ ├── MoreStubBuilder.h │ │ │ │ │ │ ├── MoreStubBuilder.tcc │ │ │ │ │ │ ├── MsvcMethodInfoReader.h │ │ │ │ │ │ ├── MsvcRtti.h │ │ │ │ │ │ ├── NormalResultHandler.h │ │ │ │ │ │ ├── NormalResultHandlerFactory.h │ │ │ │ │ │ ├── ObjNameGetter.h │ │ │ │ │ │ ├── OrderingMatcher.h │ │ │ │ │ │ ├── OutBound.h │ │ │ │ │ │ ├── OutBoundPointer.h │ │ │ │ │ │ ├── OutputStringStream.h │ │ │ │ │ │ ├── ParameterizedApiHookHolder.h │ │ │ │ │ │ ├── PendingMatcher.h │ │ │ │ │ │ ├── ProcStub.h │ │ │ │ │ │ ├── ProcessWith.h │ │ │ │ │ │ ├── RepeatMacros.h │ │ │ │ │ │ ├── RepeatStub.h │ │ │ │ │ │ ├── ReportFailure.h │ │ │ │ │ │ ├── Result.h │ │ │ │ │ │ ├── ResultHandler.h │ │ │ │ │ │ ├── ResultHandlerFactory.h │ │ │ │ │ │ ├── ReturnObjectList.h │ │ │ │ │ │ ├── ReturnStub.h │ │ │ │ │ │ ├── SelfDescribe.h │ │ │ │ │ │ ├── SimpleInvocationRecorder.h │ │ │ │ │ │ ├── Spy.h │ │ │ │ │ │ ├── StatelessMatcher.h │ │ │ │ │ │ ├── StringConstraint.h │ │ │ │ │ │ ├── StringPredict.h │ │ │ │ │ │ ├── Stub.h │ │ │ │ │ │ ├── StubBuilder.h │ │ │ │ │ │ ├── StubBuilder.tcc │ │ │ │ │ │ ├── StubContainer.h │ │ │ │ │ │ ├── StubsBuilder.h │ │ │ │ │ │ ├── StubsMatcher.h │ │ │ │ │ │ ├── TestFailureMatcher.h │ │ │ │ │ │ ├── ThenStub.h │ │ │ │ │ │ ├── ThrowExceptionStub.h │ │ │ │ │ │ ├── TypeString.h │ │ │ │ │ │ ├── TypeTraits.h │ │ │ │ │ │ ├── TypelessConstraint.h │ │ │ │ │ │ ├── TypelessConstraintAdapter.h │ │ │ │ │ │ ├── TypelessStub.h │ │ │ │ │ │ ├── TypelessStubAdapter.h │ │ │ │ │ │ ├── VirtualTable.h │ │ │ │ │ │ ├── VirtualTableUtils.h │ │ │ │ │ │ ├── Void.h │ │ │ │ │ │ ├── VoidResultHandler.h │ │ │ │ │ │ ├── VoidResultHandlerFactory.h │ │ │ │ │ │ ├── WillStub.h │ │ │ │ │ │ ├── mockable.h │ │ │ │ │ │ ├── mockcpp.h │ │ │ │ │ │ ├── mockcpp.hpp │ │ │ │ │ │ ├── mokc.h │ │ │ │ │ │ ├── types │ │ │ │ │ │ ├── Any.h │ │ │ │ │ │ ├── AnyBase.h │ │ │ │ │ │ ├── AnyCast.h │ │ │ │ │ │ ├── Holder.h │ │ │ │ │ │ ├── PlaceHolder.h │ │ │ │ │ │ ├── RefAny.h │ │ │ │ │ │ ├── RefHolder.h │ │ │ │ │ │ └── ValueHolder.h │ │ │ │ │ │ └── utils.h │ │ │ │ └── src │ │ │ │ │ ├── AfterMatcher.cpp │ │ │ │ │ ├── Any.cpp │ │ │ │ │ ├── AnyBase.cpp │ │ │ │ │ ├── AnyCast.cpp │ │ │ │ │ ├── ApiHook.cpp │ │ │ │ │ ├── ApiHookKey.cpp │ │ │ │ │ ├── Asserter.cpp │ │ │ │ │ ├── AssertionFailedError.cpp │ │ │ │ │ ├── BeforeMatcher.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CallerMatcher.cpp │ │ │ │ │ ├── ChainableMockMethodContainer.cpp │ │ │ │ │ ├── ChainableMockMethodCore.cpp │ │ │ │ │ ├── ChainableMockMethodIndexKey.cpp │ │ │ │ │ ├── ChainableMockMethodNameKey.cpp │ │ │ │ │ ├── ChainableMockObject.cpp │ │ │ │ │ ├── ChainableMockObjectBase.cpp │ │ │ │ │ ├── ChainingMockHelper.cpp │ │ │ │ │ ├── ConstraintSet.cpp │ │ │ │ │ ├── DecoratedConstraint.cpp │ │ │ │ │ ├── DefaultMatcher.cpp │ │ │ │ │ ├── DefaultStub.cpp │ │ │ │ │ ├── DelegatedMethodGetter.cpp │ │ │ │ │ ├── DieStub.cpp │ │ │ │ │ ├── DummyApiHook.cpp │ │ │ │ │ ├── Exception.cpp │ │ │ │ │ ├── ExpectsMatcher.cpp │ │ │ │ │ ├── Formatter.cpp │ │ │ │ │ ├── GlobalMockObject.cpp │ │ │ │ │ ├── HookMockObject.cpp │ │ │ │ │ ├── IdentityBuilder.cpp │ │ │ │ │ ├── Ignore.cpp │ │ │ │ │ ├── IgnoreResultHandler.cpp │ │ │ │ │ ├── IgnoreResultHandlerFactory.cpp │ │ │ │ │ ├── IgnoreReturnStub.cpp │ │ │ │ │ ├── InterfaceInfo.cpp │ │ │ │ │ ├── Invocation.cpp │ │ │ │ │ ├── InvocationId.cpp │ │ │ │ │ ├── InvocationMockBuilderGetter.cpp │ │ │ │ │ ├── InvocationMocker.cpp │ │ │ │ │ ├── InvocationMockerSet.cpp │ │ │ │ │ ├── InvocationTimesMatcher.cpp │ │ │ │ │ ├── InvokedAtLeast.cpp │ │ │ │ │ ├── InvokedAtMost.cpp │ │ │ │ │ ├── InvokedExactly.cpp │ │ │ │ │ ├── InvokedOnce.cpp │ │ │ │ │ ├── InvokedTimesMatcher.cpp │ │ │ │ │ ├── IsAnythingHelper.cpp │ │ │ │ │ ├── IsStringContains.cpp │ │ │ │ │ ├── IsStringEndWith.cpp │ │ │ │ │ ├── IsStringStartWith.cpp │ │ │ │ │ ├── JmpCode.cpp │ │ │ │ │ ├── JmpCodeArch.h │ │ │ │ │ ├── JmpCodeX64.h │ │ │ │ │ ├── JmpCodeX86.h │ │ │ │ │ ├── JmpOnlyApiHook.cpp │ │ │ │ │ ├── JmpOnlyApiHook.h │ │ │ │ │ ├── MethodIndiceChecker.cpp │ │ │ │ │ ├── MismatchResultHandler.cpp │ │ │ │ │ ├── MismatchResultHandlerFactory.cpp │ │ │ │ │ ├── MockObjectBase.cpp │ │ │ │ │ ├── NormalResultHandler.cpp │ │ │ │ │ ├── NormalResultHandlerFactory.cpp │ │ │ │ │ ├── OutBoundPointer.cpp │ │ │ │ │ ├── PendingMatcher.cpp │ │ │ │ │ ├── ProcStub.cpp │ │ │ │ │ ├── RefAny.cpp │ │ │ │ │ ├── RepeatStub.cpp │ │ │ │ │ ├── Result.cpp │ │ │ │ │ ├── ReturnObjectList.cpp │ │ │ │ │ ├── ReturnStub.cpp │ │ │ │ │ ├── SimpleInvocationRecorder.cpp │ │ │ │ │ ├── StringConstraint.cpp │ │ │ │ │ ├── StubContainer.cpp │ │ │ │ │ ├── StubsMatcher.cpp │ │ │ │ │ ├── TestFailureMatcher.cpp │ │ │ │ │ ├── ThenStub.cpp │ │ │ │ │ ├── TypeString.cpp │ │ │ │ │ ├── TypelessConstraintAdapter.cpp │ │ │ │ │ ├── TypelessStubAdapter.cpp │ │ │ │ │ ├── UnixCodeModifier.cpp │ │ │ │ │ ├── VirtualTable.cpp │ │ │ │ │ ├── VirtualTableUtils.cpp │ │ │ │ │ ├── VoidResultHandler.cpp │ │ │ │ │ ├── VoidResultHandlerFactory.cpp │ │ │ │ │ ├── WillStub.cpp │ │ │ │ │ ├── WinCodeModifier.cpp │ │ │ │ │ ├── generate_arg_related_files.py │ │ │ │ │ ├── generate_vtbl_related_files.py │ │ │ │ │ ├── get_long_opt.py │ │ │ │ │ └── ports │ │ │ │ │ └── failure │ │ │ │ │ ├── catch2_report_failure.cpp │ │ │ │ │ ├── cppunit_report_failure.cpp │ │ │ │ │ ├── cpputest_report_failure.cpp │ │ │ │ │ ├── gtest_report_failure.cpp │ │ │ │ │ └── stdexcept_report_failure.cpp │ │ │ └── testngppst │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ProjectVar.txt │ │ │ │ ├── include │ │ │ │ ├── cxxtest │ │ │ │ │ └── TestSuite.h │ │ │ │ ├── ltdl.h │ │ │ │ ├── mem_checker │ │ │ │ │ ├── bool_array.h │ │ │ │ │ ├── check_status.h │ │ │ │ │ ├── class_level_lock.h │ │ │ │ │ ├── cont_ptr_utils.h │ │ │ │ │ ├── debug_new.h │ │ │ │ │ ├── fast_mutex.h │ │ │ │ │ ├── fixed_mem_pool.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── interface_4cuser.h │ │ │ │ │ ├── interface_4cxxuser.h │ │ │ │ │ ├── interface_4user.h │ │ │ │ │ ├── interface_4xunit.h │ │ │ │ │ ├── mem_pool_base.h │ │ │ │ │ ├── object_level_lock.h │ │ │ │ │ ├── pctimer.h │ │ │ │ │ ├── reporter.h │ │ │ │ │ ├── set_assign.h │ │ │ │ │ ├── static_assert.h │ │ │ │ │ └── static_mem_pool.h │ │ │ │ ├── testcpp │ │ │ │ │ └── testcpp.hpp │ │ │ │ └── testngppst │ │ │ │ │ ├── Any.h │ │ │ │ │ ├── Asserter.h │ │ │ │ │ ├── Backward.h │ │ │ │ │ ├── DataDrivenDef.h │ │ │ │ │ ├── NoThrowsReporter.h │ │ │ │ │ ├── TestDefMacros.h │ │ │ │ │ ├── TestFixture.h │ │ │ │ │ ├── TestModule.h │ │ │ │ │ ├── TypeTraits.h │ │ │ │ │ ├── comm │ │ │ │ │ ├── ExceptionKeywords.h │ │ │ │ │ ├── PipeReadableChannel.h │ │ │ │ │ ├── PipeWrittableChannel.h │ │ │ │ │ ├── ReadableChannel.h │ │ │ │ │ ├── Win32PipeReadableChannel.h │ │ │ │ │ ├── Win32PipeWrittableChannel.h │ │ │ │ │ └── WrittableChannel.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── AssertionFailure.h │ │ │ │ │ ├── DataDriven.h │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── Exception.h │ │ │ │ │ ├── Info.h │ │ │ │ │ ├── MemChecker.h │ │ │ │ │ ├── Taggable.h │ │ │ │ │ ├── TagsFilterRule.h │ │ │ │ │ ├── TestCase.h │ │ │ │ │ ├── TestCaseInfoReader.h │ │ │ │ │ ├── TestFixtureDesc.h │ │ │ │ │ ├── TestFixtureInfoReader.h │ │ │ │ │ ├── TestSuiteDesc.h │ │ │ │ │ ├── TestSuiteInfoReader.h │ │ │ │ │ └── Warning.h │ │ │ │ │ ├── listener │ │ │ │ │ ├── MemLeakCountCollector.h │ │ │ │ │ ├── TagsFilterResultCollector.h │ │ │ │ │ ├── TestCaseListener.h │ │ │ │ │ ├── TestCaseResultCollector.h │ │ │ │ │ ├── TestCaseResultReporter.h │ │ │ │ │ ├── TestFixtureResultCollector.h │ │ │ │ │ ├── TestListener.h │ │ │ │ │ ├── TestResultCollector.h │ │ │ │ │ ├── TestResultReporter.h │ │ │ │ │ ├── TestSuiteListener.h │ │ │ │ │ ├── TestSuiteResultCollector.h │ │ │ │ │ └── TestSuiteResultReporter.h │ │ │ │ │ ├── runner │ │ │ │ │ ├── AndCompositeTaggableFilter.h │ │ │ │ │ ├── EOFError.h │ │ │ │ │ ├── EmptyTagsFilter.h │ │ │ │ │ ├── EnvironmentCleaner.h │ │ │ │ │ ├── FixtureTagsFilter.h │ │ │ │ │ ├── GeneralTagsFilter.h │ │ │ │ │ ├── GeneralTestFilter.h │ │ │ │ │ ├── MatchAllTagsFilter.h │ │ │ │ │ ├── NameMatcher.h │ │ │ │ │ ├── NotCompositeTaggableFilter.h │ │ │ │ │ ├── OrCompositeTaggableFilter.h │ │ │ │ │ ├── OrCompositeTestFilter.h │ │ │ │ │ ├── PosixFNMatcher.h │ │ │ │ │ ├── ResourceCheckPoint.h │ │ │ │ │ ├── Sandbox.h │ │ │ │ │ ├── SandboxHandler.h │ │ │ │ │ ├── SandboxProcessor.h │ │ │ │ │ ├── SandboxTypedef.h │ │ │ │ │ ├── SandboxTypedefUnix.h │ │ │ │ │ ├── SimpleTestCaseResultReporter.h │ │ │ │ │ ├── SimpleTestCaseRunner.h │ │ │ │ │ ├── SimpleTestHierarchyRunner.h │ │ │ │ │ ├── SimpleTestResultDispatcher.h │ │ │ │ │ ├── SimpleTestResultManager.h │ │ │ │ │ ├── SimpleTestResultReporter.h │ │ │ │ │ ├── SimpleTestSuiteResultReporter.h │ │ │ │ │ ├── SmartTestCaseResultCollector.h │ │ │ │ │ ├── TaggableObjFilter.h │ │ │ │ │ ├── TagsFilters.h │ │ │ │ │ ├── TagsParser.h │ │ │ │ │ ├── TestCaseContainer.h │ │ │ │ │ ├── TestCaseFilter.h │ │ │ │ │ ├── TestCaseHierarchy.h │ │ │ │ │ ├── TestCaseResultDispatcher.h │ │ │ │ │ ├── TestCaseRunner.h │ │ │ │ │ ├── TestCaseRunnerFactory.h │ │ │ │ │ ├── TestCaseSandbox.h │ │ │ │ │ ├── TestCaseSandboxHandler.h │ │ │ │ │ ├── TestCaseSandboxResultDecoder.h │ │ │ │ │ ├── TestCaseSandboxResultReporter.h │ │ │ │ │ ├── TestFilter.h │ │ │ │ │ ├── TestFilterFactory.h │ │ │ │ │ ├── TestFixtureContext.h │ │ │ │ │ ├── TestFixtureRunner.h │ │ │ │ │ ├── TestFixtureRunnerFactory.h │ │ │ │ │ ├── TestHierarchyHandler.h │ │ │ │ │ ├── TestHierarchyRunner.h │ │ │ │ │ ├── TestHierarchySandboxRunner.h │ │ │ │ │ ├── TestResultDispatcher.h │ │ │ │ │ ├── TestResultManager.h │ │ │ │ │ ├── TestRunner.h │ │ │ │ │ ├── TestRunnerContext.h │ │ │ │ │ ├── TestSuiteContext.h │ │ │ │ │ ├── TestSuiteDescEntryNameGetter.h │ │ │ │ │ ├── TestSuiteResultDispatcher.h │ │ │ │ │ ├── TestSuiteRunner.h │ │ │ │ │ ├── WildcardTestFilter.h │ │ │ │ │ └── loaders │ │ │ │ │ │ ├── DLModuleLoader.h │ │ │ │ │ │ ├── LTModuleLoader.h │ │ │ │ │ │ ├── ModuleLoader.h │ │ │ │ │ │ ├── ModuleLoaderFactory.h │ │ │ │ │ │ ├── ModuleTestListenerLoader.h │ │ │ │ │ │ ├── ModuleTestListenerLoaderFactory.h │ │ │ │ │ │ ├── ModuleTestSuiteLoader.h │ │ │ │ │ │ ├── ModuleTestSuiteLoaderFactory.h │ │ │ │ │ │ ├── TestListenerLoader.h │ │ │ │ │ │ ├── TestListenerLoaderFactory.h │ │ │ │ │ │ ├── TestSuiteLoader.h │ │ │ │ │ │ ├── TestSuiteLoaderFactory.h │ │ │ │ │ │ └── Win32DllModuleLoader.h │ │ │ │ │ ├── testngppst.h │ │ │ │ │ ├── testngppst.hpp │ │ │ │ │ ├── utils │ │ │ │ │ ├── ConsoleState.h │ │ │ │ │ ├── Formatter.h │ │ │ │ │ ├── InternalError.h │ │ │ │ │ ├── OptionList.h │ │ │ │ │ ├── StringList.h │ │ │ │ │ ├── StringToOptions.h │ │ │ │ │ ├── StupidTimer.h │ │ │ │ │ └── TypeString.h │ │ │ │ │ └── win32 │ │ │ │ │ ├── Win32Sandbox.h │ │ │ │ │ ├── Win32TestCaseRunnerResultReporter.h │ │ │ │ │ ├── Win32TestCaseSandbox.h │ │ │ │ │ ├── Win32TestHierarchySandboxRunner.h │ │ │ │ │ └── Win32ThrowLastError.h │ │ │ │ ├── scripts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── premake4.lua │ │ │ │ ├── pycompile.py │ │ │ │ ├── setup.py │ │ │ │ ├── testngppstgen.py │ │ │ │ └── testngppstgen │ │ │ │ │ ├── AnnotationParser.py │ │ │ │ │ ├── ClassDeclParser.py │ │ │ │ │ ├── DataProvider.py │ │ │ │ │ ├── DataProviderParser.py │ │ │ │ │ ├── ElemParser.py │ │ │ │ │ ├── Fixture.py │ │ │ │ │ ├── FixtureParser.py │ │ │ │ │ ├── Generator.py │ │ │ │ │ ├── LogicalLine.py │ │ │ │ │ ├── Message.py │ │ │ │ │ ├── Name.py │ │ │ │ │ ├── Output.py │ │ │ │ │ ├── Phase0.py │ │ │ │ │ ├── Phase1.py │ │ │ │ │ ├── Phase1Result.py │ │ │ │ │ ├── Phase2.py │ │ │ │ │ ├── Phase3.py │ │ │ │ │ ├── Phase4.py │ │ │ │ │ ├── PreprocessScope.py │ │ │ │ │ ├── PreprocessScopeParser.py │ │ │ │ │ ├── Process.py │ │ │ │ │ ├── TagsParser.py │ │ │ │ │ ├── TestCase.py │ │ │ │ │ ├── TestCaseParser.py │ │ │ │ │ ├── TestScope.py │ │ │ │ │ ├── Useless.py │ │ │ │ │ ├── Utils.py │ │ │ │ │ └── __init__.py │ │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Formatter.cpp │ │ │ │ ├── MemChecker.cpp │ │ │ │ ├── TestCase.cpp │ │ │ │ ├── TestFixture.cpp │ │ │ │ ├── TestSuiteDesc.cpp │ │ │ │ ├── TypeString.cpp │ │ │ │ ├── except │ │ │ │ ├── AssertionFailure.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Exception.cpp │ │ │ │ ├── listeners │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── StdoutTestListener.cpp │ │ │ │ ├── XMLBuilder.cpp │ │ │ │ ├── XMLBuilder.h │ │ │ │ ├── XMLTestListener.cpp │ │ │ │ └── XMLTestListener.h │ │ │ │ ├── mem_checker │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── NoThrowsReporter.cpp │ │ │ │ ├── bool_array.cpp │ │ │ │ ├── check_status.cpp │ │ │ │ ├── debug_new.cpp │ │ │ │ ├── interface_4xunit.cpp │ │ │ │ ├── mem_pool_base.cpp │ │ │ │ ├── reporter.cpp │ │ │ │ └── static_mem_pool.cpp │ │ │ │ ├── runner │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ResourceCheckPoint.cpp │ │ │ │ ├── TestRunner.cpp │ │ │ │ ├── TestRunnerMain.cpp │ │ │ │ ├── filters │ │ │ │ │ ├── GeneralTestFilter.cpp │ │ │ │ │ ├── OrCompositeTestFilter.cpp │ │ │ │ │ ├── PosixFNMatcher.cpp │ │ │ │ │ ├── TestFilterFactory.cpp │ │ │ │ │ ├── WildcardTestFilter.cpp │ │ │ │ │ ├── Win32Fnmatch.c │ │ │ │ │ └── Win32Fnmatch.h │ │ │ │ ├── loaders │ │ │ │ │ ├── DLModuleLoader.cpp │ │ │ │ │ ├── DLModuleLoaderFactory.cpp │ │ │ │ │ ├── LTModuleLoader.cpp │ │ │ │ │ ├── LTModuleLoaderFactory.cpp │ │ │ │ │ ├── ModuleTestListenerLoader.cpp │ │ │ │ │ ├── ModuleTestListenerLoaderFactory.cpp │ │ │ │ │ ├── ModuleTestSuiteLoader.cpp │ │ │ │ │ ├── ModuleTestSuiteLoaderFactory.cpp │ │ │ │ │ ├── Win32DllModuleLoader.cpp │ │ │ │ │ └── Win32DllModuleLoaderFactory.cpp │ │ │ │ ├── reports │ │ │ │ │ ├── SimpleTestCaseResultReporter.cpp │ │ │ │ │ ├── SimpleTestResultDispatcher.cpp │ │ │ │ │ ├── SimpleTestResultManager.cpp │ │ │ │ │ ├── SimpleTestResultReporter.cpp │ │ │ │ │ ├── SimpleTestSuiteResultReporter.cpp │ │ │ │ │ └── SmartTestCaseResultCollector.cpp │ │ │ │ ├── runners │ │ │ │ │ ├── SimpleTestCaseRunner.cpp │ │ │ │ │ ├── SimpleTestHierarchyRunner.cpp │ │ │ │ │ ├── TestCaseHierarchy.cpp │ │ │ │ │ ├── TestCaseRunnerFactory.cpp │ │ │ │ │ ├── TestFixtureContext.cpp │ │ │ │ │ ├── TestFixtureRunner.cpp │ │ │ │ │ ├── TestFixtureRunnerFactory.cpp │ │ │ │ │ ├── TestHierarchyHandler.cpp │ │ │ │ │ ├── TestRunnerContext.cpp │ │ │ │ │ ├── TestSuiteContext.cpp │ │ │ │ │ └── TestSuiteRunner.cpp │ │ │ │ ├── sandbox │ │ │ │ │ ├── Sandbox.cpp │ │ │ │ │ ├── SandboxProcessor.cpp │ │ │ │ │ ├── TestCaseSandbox.cpp │ │ │ │ │ ├── TestCaseSandboxHandler.cpp │ │ │ │ │ ├── TestCaseSandboxResultDecoder.cpp │ │ │ │ │ ├── TestCaseSandboxResultReporter.cpp │ │ │ │ │ └── TestHierarchySandboxRunner.cpp │ │ │ │ ├── tags │ │ │ │ │ ├── AndCompositeTaggableFilter.cpp │ │ │ │ │ ├── EmptyTagsFilter.cpp │ │ │ │ │ ├── FixtureTagsFilter.cpp │ │ │ │ │ ├── GeneralTagsFilter.cpp │ │ │ │ │ ├── MatchAllTagsFilter.cpp │ │ │ │ │ ├── NotCompositeTaggableFilter.cpp │ │ │ │ │ ├── OrCompositeTaggableFilter.cpp │ │ │ │ │ ├── TagsFilters.cpp │ │ │ │ │ └── TagsParser.cpp │ │ │ │ ├── utils │ │ │ │ │ ├── PipeReadableChannel.cpp │ │ │ │ │ └── PipeWrittableChannel.cpp │ │ │ │ └── win32 │ │ │ │ │ ├── GetLastError.cpp │ │ │ │ │ ├── TestCaseSandboxRunnerMain.cpp │ │ │ │ │ ├── Win32PipeReadableChannel.cpp │ │ │ │ │ ├── Win32PipeWrittableChannel.cpp │ │ │ │ │ ├── Win32Sandbox.cpp │ │ │ │ │ ├── Win32TestCaseSandbox.cpp │ │ │ │ │ └── Win32TestHierarchySandboxRunner.cpp │ │ │ │ └── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConsoleState.cpp │ │ │ │ ├── GetOpt.c │ │ │ │ ├── GetOpt.h │ │ │ │ ├── OptionList.cpp │ │ │ │ ├── StringToOptions.cpp │ │ │ │ └── StupidTimer.cpp │ │ ├── CMakeLists.txt │ │ └── ut │ │ │ ├── CMakeLists.txt │ │ │ ├── FTestFixture1.h │ │ │ ├── FTestFixture2.h │ │ │ ├── MyTestCase.h │ │ │ ├── TestAsserter.h │ │ │ ├── TestAssertionFailure.h │ │ │ ├── TestDataDriven.h │ │ │ ├── TestExceptionKeywords.h │ │ │ ├── TestFixtureDef.h │ │ │ ├── TestGeneralTestFilter.h │ │ │ ├── TestMemChecker.h │ │ │ ├── TestModuleTestSuiteLoader.h │ │ │ ├── TestOrCompositeTestFilter.h │ │ │ ├── TestPipeReadableChannel.h │ │ │ ├── TestPipeWrittableChannel.h │ │ │ ├── TestPosixFNMatcher.h │ │ │ ├── TestSandbox.h │ │ │ ├── TestSandboxProcessor.h │ │ │ ├── TestSimpleTestSuiteResultReporter.h │ │ │ ├── TestStringToOptions.h │ │ │ ├── TestTagsParser.h │ │ │ ├── TestTestCase.h │ │ │ ├── TestTestCaseHierarchy.h │ │ │ ├── TestTestCaseSandboxResultReporter.h │ │ │ ├── TestTestFilterFactory.h │ │ │ ├── TestTestFixtureDesc.h │ │ │ ├── TestTestFixtureSandboxRunner.h │ │ │ ├── TestTestSuiteContext.h │ │ │ ├── TestTestSuiteDesc.h │ │ │ ├── TestXMLBuilder.h │ │ │ ├── TestXMLTestListener.h │ │ │ ├── gt.py │ │ │ └── testngpp-ut │ │ └── update-testngppst.sh ├── CMakeLists.txt └── ut │ ├── CMakeLists.txt │ ├── MockMethodSamples.h │ ├── TestAny.h │ ├── TestApiHook.h │ ├── TestApiHookBase.h │ ├── TestApiHookStdcall.h │ ├── TestChainableMockMethod.h │ ├── TestChainableMockMethodContainer.h │ ├── TestChainableMockMethodNameKey.h │ ├── TestChainableObject.h │ ├── TestCheck.h │ ├── TestConstraintSet.h │ ├── TestDelegatedMethod.h │ ├── TestDestructorChecker.h │ ├── TestFormatter.h │ ├── TestHolder.h │ ├── TestIgnoreReturnValue.h │ ├── TestIncrementStub.h │ ├── TestInterfaceInfo.h │ ├── TestInvocation.h │ ├── TestInvocationMocker.h │ ├── TestIsEqual.h │ ├── TestIsStringContains.h │ ├── TestIsStringEndWith.h │ ├── TestIsStringStartWith.h │ ├── TestMethodInfoReader.h │ ├── TestMockObject.h │ ├── TestMockObject2.h │ ├── TestMockcppSample.h │ ├── TestNonvirtualMethodMocker.h │ ├── TestOverloadMethodMocker.h │ ├── TestReturnObjectList.h │ ├── TestSmartPointerChecker.h │ ├── TestStaticMethodMocker.h │ ├── TestStringConstraint.h │ ├── TestStubContainter.h │ ├── TestVirtualTable.h │ ├── gt.py │ └── mockcpp-ut └── tools ├── CMakeLists.txt ├── build_functions.ps1 ├── build_functions.sh └── testngpp.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/fake_boost/config/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/fake_boost/config/general.h -------------------------------------------------------------------------------- /3rdparty/fake_boost/config/platdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/fake_boost/config/platdef.h -------------------------------------------------------------------------------- /3rdparty/fake_boost/fake_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/fake_boost/fake_boost.h -------------------------------------------------------------------------------- /3rdparty/fake_boost/type/typeof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/fake_boost/type/typeof.h -------------------------------------------------------------------------------- /3rdparty/fake_boost/type/typetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/fake_boost/type/typetools.h -------------------------------------------------------------------------------- /3rdparty/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/msinttypes/inttypes.h -------------------------------------------------------------------------------- /3rdparty/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/3rdparty/msinttypes/stdint.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/COPYING -------------------------------------------------------------------------------- /ExportLite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/ExportLite.ps1 -------------------------------------------------------------------------------- /HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/HEADER -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/Makefile -------------------------------------------------------------------------------- /ProjectVar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/ProjectVar.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/TODO.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/clean.bat -------------------------------------------------------------------------------- /docs/AdvancedGuideOfMockcpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/AdvancedGuideOfMockcpp.md -------------------------------------------------------------------------------- /docs/BuildGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/BuildGuide -------------------------------------------------------------------------------- /docs/BuildSystemDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/BuildSystemDescription.md -------------------------------------------------------------------------------- /docs/ChineseVersionManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/ChineseVersionManual.md -------------------------------------------------------------------------------- /docs/CxxTestingTips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/CxxTestingTips.md -------------------------------------------------------------------------------- /docs/EnglishManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/EnglishManual.md -------------------------------------------------------------------------------- /docs/FeatureTracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/FeatureTracking.md -------------------------------------------------------------------------------- /docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/INSTALL -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/OnGoingFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/OnGoingFeatures.md -------------------------------------------------------------------------------- /docs/ProjectHome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/ProjectHome.md -------------------------------------------------------------------------------- /docs/SimpleUserInstruction_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/SimpleUserInstruction_zh.md -------------------------------------------------------------------------------- /docs/SoftwareArchitecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/SoftwareArchitecture.md -------------------------------------------------------------------------------- /docs/UpdateHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/UpdateHistory.md -------------------------------------------------------------------------------- /docs/images/2021-03-14-09-55-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/docs/images/2021-03-14-09-55-56.png -------------------------------------------------------------------------------- /include/mockcpp/AfterMatchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/AfterMatchBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/AfterMatchBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/AfterMatchBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/AfterMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/AfterMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHook.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookFunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookFunctor.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookGenerator.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookHolder.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookHolderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookHolderFactory.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookKey.h -------------------------------------------------------------------------------- /include/mockcpp/ApiHookMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ApiHookMocker.h -------------------------------------------------------------------------------- /include/mockcpp/ArgumentsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ArgumentsList.h -------------------------------------------------------------------------------- /include/mockcpp/ArgumentsMacroHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ArgumentsMacroHelpers.h -------------------------------------------------------------------------------- /include/mockcpp/ArgumentsMatchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ArgumentsMatchBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/ArgumentsMatchBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ArgumentsMatchBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/Asserter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Asserter.h -------------------------------------------------------------------------------- /include/mockcpp/AssertionFailedError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/AssertionFailedError.h -------------------------------------------------------------------------------- /include/mockcpp/BeforeMatchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/BeforeMatchBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/BeforeMatchBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/BeforeMatchBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/BeforeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/BeforeMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/CallerMatchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/CallerMatchBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/CallerMatchBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/CallerMatchBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/CallerMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/CallerMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethod.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethodContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethodContainer.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethodCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethodCore.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethodIndexKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethodIndexKey.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethodKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethodKey.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockMethodNameKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockMethodNameKey.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockObject.h -------------------------------------------------------------------------------- /include/mockcpp/ChainableMockObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainableMockObjectBase.h -------------------------------------------------------------------------------- /include/mockcpp/ChainingMockHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ChainingMockHelper.h -------------------------------------------------------------------------------- /include/mockcpp/CheckWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/CheckWith.h -------------------------------------------------------------------------------- /include/mockcpp/CodeModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/CodeModifier.h -------------------------------------------------------------------------------- /include/mockcpp/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Constraint.h -------------------------------------------------------------------------------- /include/mockcpp/ConstraintSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ConstraintSet.h -------------------------------------------------------------------------------- /include/mockcpp/DecoratedConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DecoratedConstraint.h -------------------------------------------------------------------------------- /include/mockcpp/DefaultBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DefaultBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/DefaultMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DefaultMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/DefaultStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DefaultStub.h -------------------------------------------------------------------------------- /include/mockcpp/DelegatedMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DelegatedMethod.h -------------------------------------------------------------------------------- /include/mockcpp/DelegatedMethodGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DelegatedMethodGetter.h -------------------------------------------------------------------------------- /include/mockcpp/DestructorChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DestructorChecker.h -------------------------------------------------------------------------------- /include/mockcpp/DieStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DieStub.h -------------------------------------------------------------------------------- /include/mockcpp/DummyBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/DummyBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/EqualityUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/EqualityUtil.h -------------------------------------------------------------------------------- /include/mockcpp/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Exception.h -------------------------------------------------------------------------------- /include/mockcpp/ExpectsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ExpectsMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Formatter.h -------------------------------------------------------------------------------- /include/mockcpp/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Functor.h -------------------------------------------------------------------------------- /include/mockcpp/GenericMethodIndicesChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/GenericMethodIndicesChecker.h -------------------------------------------------------------------------------- /include/mockcpp/GlobalMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/GlobalMockObject.h -------------------------------------------------------------------------------- /include/mockcpp/GnuMethodIndicesChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/GnuMethodIndicesChecker.h -------------------------------------------------------------------------------- /include/mockcpp/GnuMethodInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/GnuMethodInfoReader.h -------------------------------------------------------------------------------- /include/mockcpp/HookMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/HookMockObject.h -------------------------------------------------------------------------------- /include/mockcpp/IdentityBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IdentityBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/Ignore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Ignore.h -------------------------------------------------------------------------------- /include/mockcpp/IgnoreHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IgnoreHandler.h -------------------------------------------------------------------------------- /include/mockcpp/IgnoreResultHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IgnoreResultHandler.h -------------------------------------------------------------------------------- /include/mockcpp/IgnoreResultHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IgnoreResultHandlerFactory.h -------------------------------------------------------------------------------- /include/mockcpp/IgnoreReturnStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IgnoreReturnStub.h -------------------------------------------------------------------------------- /include/mockcpp/IncrementStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IncrementStub.h -------------------------------------------------------------------------------- /include/mockcpp/IndexInvokableGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IndexInvokableGetter.h -------------------------------------------------------------------------------- /include/mockcpp/InterfaceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InterfaceInfo.h -------------------------------------------------------------------------------- /include/mockcpp/Invocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Invocation.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationId.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockBuilderGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockBuilderGetter.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMocker.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockerContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockerContainer.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockerNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockerNamespace.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationMockerSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationMockerSet.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationTimesMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationTimesMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/InvocationWithReturnType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvocationWithReturnType.h -------------------------------------------------------------------------------- /include/mockcpp/Invokable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Invokable.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedAtLeast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedAtLeast.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedAtMost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedAtMost.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedExactly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedExactly.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedOnce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedOnce.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedTimesMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedTimesMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedTimesReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedTimesReader.h -------------------------------------------------------------------------------- /include/mockcpp/InvokedTimesRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/InvokedTimesRecorder.h -------------------------------------------------------------------------------- /include/mockcpp/IsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsAnything.h -------------------------------------------------------------------------------- /include/mockcpp/IsAnythingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsAnythingHelper.h -------------------------------------------------------------------------------- /include/mockcpp/IsConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsConst.h -------------------------------------------------------------------------------- /include/mockcpp/IsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsEqual.h -------------------------------------------------------------------------------- /include/mockcpp/IsGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsGreaterThan.h -------------------------------------------------------------------------------- /include/mockcpp/IsLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsLessThan.h -------------------------------------------------------------------------------- /include/mockcpp/IsMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsMirror.h -------------------------------------------------------------------------------- /include/mockcpp/IsNotEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsNotEqual.h -------------------------------------------------------------------------------- /include/mockcpp/IsRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsRef.h -------------------------------------------------------------------------------- /include/mockcpp/IsStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsStringContains.h -------------------------------------------------------------------------------- /include/mockcpp/IsStringEndWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsStringEndWith.h -------------------------------------------------------------------------------- /include/mockcpp/IsStringStartWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/IsStringStartWith.h -------------------------------------------------------------------------------- /include/mockcpp/JmpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/JmpCode.h -------------------------------------------------------------------------------- /include/mockcpp/Matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Matcher.h -------------------------------------------------------------------------------- /include/mockcpp/Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Method.h -------------------------------------------------------------------------------- /include/mockcpp/MethodIndiceChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MethodIndiceChecker.h -------------------------------------------------------------------------------- /include/mockcpp/MethodInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MethodInfoReader.h -------------------------------------------------------------------------------- /include/mockcpp/MethodTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MethodTypeTraits.h -------------------------------------------------------------------------------- /include/mockcpp/MismatchResultHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MismatchResultHandler.h -------------------------------------------------------------------------------- /include/mockcpp/MismatchResultHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MismatchResultHandlerFactory.h -------------------------------------------------------------------------------- /include/mockcpp/MockBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MockBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/MockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MockObject.h -------------------------------------------------------------------------------- /include/mockcpp/MockObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MockObjectBase.h -------------------------------------------------------------------------------- /include/mockcpp/MockObjectHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MockObjectHelper.h -------------------------------------------------------------------------------- /include/mockcpp/MoreStubBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MoreStubBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/MoreStubBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MoreStubBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/MsvcMethodInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MsvcMethodInfoReader.h -------------------------------------------------------------------------------- /include/mockcpp/MsvcRtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/MsvcRtti.h -------------------------------------------------------------------------------- /include/mockcpp/NormalResultHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/NormalResultHandler.h -------------------------------------------------------------------------------- /include/mockcpp/NormalResultHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/NormalResultHandlerFactory.h -------------------------------------------------------------------------------- /include/mockcpp/ObjNameGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ObjNameGetter.h -------------------------------------------------------------------------------- /include/mockcpp/OrderingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/OrderingMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/OutBound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/OutBound.h -------------------------------------------------------------------------------- /include/mockcpp/OutBoundPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/OutBoundPointer.h -------------------------------------------------------------------------------- /include/mockcpp/OutputStringStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/OutputStringStream.h -------------------------------------------------------------------------------- /include/mockcpp/ParameterizedApiHookHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ParameterizedApiHookHolder.h -------------------------------------------------------------------------------- /include/mockcpp/PendingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/PendingMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/ProcStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ProcStub.h -------------------------------------------------------------------------------- /include/mockcpp/ProcessWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ProcessWith.h -------------------------------------------------------------------------------- /include/mockcpp/RepeatMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/RepeatMacros.h -------------------------------------------------------------------------------- /include/mockcpp/RepeatStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/RepeatStub.h -------------------------------------------------------------------------------- /include/mockcpp/ReportFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ReportFailure.h -------------------------------------------------------------------------------- /include/mockcpp/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Result.h -------------------------------------------------------------------------------- /include/mockcpp/ResultHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ResultHandler.h -------------------------------------------------------------------------------- /include/mockcpp/ResultHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ResultHandlerFactory.h -------------------------------------------------------------------------------- /include/mockcpp/ReturnObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ReturnObjectList.h -------------------------------------------------------------------------------- /include/mockcpp/ReturnStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ReturnStub.h -------------------------------------------------------------------------------- /include/mockcpp/SelfDescribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/SelfDescribe.h -------------------------------------------------------------------------------- /include/mockcpp/SimpleInvocationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/SimpleInvocationRecorder.h -------------------------------------------------------------------------------- /include/mockcpp/Spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Spy.h -------------------------------------------------------------------------------- /include/mockcpp/StatelessMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StatelessMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/StringConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StringConstraint.h -------------------------------------------------------------------------------- /include/mockcpp/StringPredict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StringPredict.h -------------------------------------------------------------------------------- /include/mockcpp/Stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Stub.h -------------------------------------------------------------------------------- /include/mockcpp/StubBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StubBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/StubBuilder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StubBuilder.tcc -------------------------------------------------------------------------------- /include/mockcpp/StubContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StubContainer.h -------------------------------------------------------------------------------- /include/mockcpp/StubsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StubsBuilder.h -------------------------------------------------------------------------------- /include/mockcpp/StubsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/StubsMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/TestFailureMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TestFailureMatcher.h -------------------------------------------------------------------------------- /include/mockcpp/ThenStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ThenStub.h -------------------------------------------------------------------------------- /include/mockcpp/ThrowExceptionStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/ThrowExceptionStub.h -------------------------------------------------------------------------------- /include/mockcpp/TypeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypeString.h -------------------------------------------------------------------------------- /include/mockcpp/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypeTraits.h -------------------------------------------------------------------------------- /include/mockcpp/TypelessConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypelessConstraint.h -------------------------------------------------------------------------------- /include/mockcpp/TypelessConstraintAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypelessConstraintAdapter.h -------------------------------------------------------------------------------- /include/mockcpp/TypelessStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypelessStub.h -------------------------------------------------------------------------------- /include/mockcpp/TypelessStubAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/TypelessStubAdapter.h -------------------------------------------------------------------------------- /include/mockcpp/VirtualTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/VirtualTable.h -------------------------------------------------------------------------------- /include/mockcpp/VirtualTableUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/VirtualTableUtils.h -------------------------------------------------------------------------------- /include/mockcpp/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/Void.h -------------------------------------------------------------------------------- /include/mockcpp/VoidResultHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/VoidResultHandler.h -------------------------------------------------------------------------------- /include/mockcpp/VoidResultHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/VoidResultHandlerFactory.h -------------------------------------------------------------------------------- /include/mockcpp/WillStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/WillStub.h -------------------------------------------------------------------------------- /include/mockcpp/mockable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/mockable.h -------------------------------------------------------------------------------- /include/mockcpp/mockcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/mockcpp.h -------------------------------------------------------------------------------- /include/mockcpp/mockcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/mockcpp.hpp -------------------------------------------------------------------------------- /include/mockcpp/mokc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/mokc.h -------------------------------------------------------------------------------- /include/mockcpp/types/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/Any.h -------------------------------------------------------------------------------- /include/mockcpp/types/AnyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/AnyBase.h -------------------------------------------------------------------------------- /include/mockcpp/types/AnyCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/AnyCast.h -------------------------------------------------------------------------------- /include/mockcpp/types/Holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/Holder.h -------------------------------------------------------------------------------- /include/mockcpp/types/PlaceHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/PlaceHolder.h -------------------------------------------------------------------------------- /include/mockcpp/types/RefAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/RefAny.h -------------------------------------------------------------------------------- /include/mockcpp/types/RefHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/RefHolder.h -------------------------------------------------------------------------------- /include/mockcpp/types/ValueHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/types/ValueHolder.h -------------------------------------------------------------------------------- /include/mockcpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/include/mockcpp/utils.h -------------------------------------------------------------------------------- /src/AfterMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/AfterMatcher.cpp -------------------------------------------------------------------------------- /src/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Any.cpp -------------------------------------------------------------------------------- /src/AnyBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/AnyBase.cpp -------------------------------------------------------------------------------- /src/AnyCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/AnyCast.cpp -------------------------------------------------------------------------------- /src/ApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ApiHook.cpp -------------------------------------------------------------------------------- /src/ApiHookKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ApiHookKey.cpp -------------------------------------------------------------------------------- /src/Asserter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Asserter.cpp -------------------------------------------------------------------------------- /src/AssertionFailedError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/AssertionFailedError.cpp -------------------------------------------------------------------------------- /src/BeforeMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/BeforeMatcher.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CallerMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/CallerMatcher.cpp -------------------------------------------------------------------------------- /src/ChainableMockMethodContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockMethodContainer.cpp -------------------------------------------------------------------------------- /src/ChainableMockMethodCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockMethodCore.cpp -------------------------------------------------------------------------------- /src/ChainableMockMethodIndexKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockMethodIndexKey.cpp -------------------------------------------------------------------------------- /src/ChainableMockMethodNameKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockMethodNameKey.cpp -------------------------------------------------------------------------------- /src/ChainableMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockObject.cpp -------------------------------------------------------------------------------- /src/ChainableMockObjectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainableMockObjectBase.cpp -------------------------------------------------------------------------------- /src/ChainingMockHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ChainingMockHelper.cpp -------------------------------------------------------------------------------- /src/ConstraintSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ConstraintSet.cpp -------------------------------------------------------------------------------- /src/DecoratedConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DecoratedConstraint.cpp -------------------------------------------------------------------------------- /src/DefaultMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DefaultMatcher.cpp -------------------------------------------------------------------------------- /src/DefaultStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DefaultStub.cpp -------------------------------------------------------------------------------- /src/DelegatedMethodGetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DelegatedMethodGetter.cpp -------------------------------------------------------------------------------- /src/DieStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DieStub.cpp -------------------------------------------------------------------------------- /src/DummyApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/DummyApiHook.cpp -------------------------------------------------------------------------------- /src/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Exception.cpp -------------------------------------------------------------------------------- /src/ExpectsMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ExpectsMatcher.cpp -------------------------------------------------------------------------------- /src/Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Formatter.cpp -------------------------------------------------------------------------------- /src/GlobalMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/GlobalMockObject.cpp -------------------------------------------------------------------------------- /src/HookMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/HookMockObject.cpp -------------------------------------------------------------------------------- /src/IdentityBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IdentityBuilder.cpp -------------------------------------------------------------------------------- /src/Ignore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Ignore.cpp -------------------------------------------------------------------------------- /src/IgnoreResultHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IgnoreResultHandler.cpp -------------------------------------------------------------------------------- /src/IgnoreResultHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IgnoreResultHandlerFactory.cpp -------------------------------------------------------------------------------- /src/IgnoreReturnStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IgnoreReturnStub.cpp -------------------------------------------------------------------------------- /src/InterfaceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InterfaceInfo.cpp -------------------------------------------------------------------------------- /src/Invocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Invocation.cpp -------------------------------------------------------------------------------- /src/InvocationId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvocationId.cpp -------------------------------------------------------------------------------- /src/InvocationMockBuilderGetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvocationMockBuilderGetter.cpp -------------------------------------------------------------------------------- /src/InvocationMocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvocationMocker.cpp -------------------------------------------------------------------------------- /src/InvocationMockerSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvocationMockerSet.cpp -------------------------------------------------------------------------------- /src/InvocationTimesMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvocationTimesMatcher.cpp -------------------------------------------------------------------------------- /src/InvokedAtLeast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvokedAtLeast.cpp -------------------------------------------------------------------------------- /src/InvokedAtMost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvokedAtMost.cpp -------------------------------------------------------------------------------- /src/InvokedExactly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvokedExactly.cpp -------------------------------------------------------------------------------- /src/InvokedOnce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvokedOnce.cpp -------------------------------------------------------------------------------- /src/InvokedTimesMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/InvokedTimesMatcher.cpp -------------------------------------------------------------------------------- /src/IsAnythingHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IsAnythingHelper.cpp -------------------------------------------------------------------------------- /src/IsStringContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IsStringContains.cpp -------------------------------------------------------------------------------- /src/IsStringEndWith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IsStringEndWith.cpp -------------------------------------------------------------------------------- /src/IsStringStartWith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/IsStringStartWith.cpp -------------------------------------------------------------------------------- /src/JmpCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpCode.cpp -------------------------------------------------------------------------------- /src/JmpCodeArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpCodeArch.h -------------------------------------------------------------------------------- /src/JmpCodeX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpCodeX64.h -------------------------------------------------------------------------------- /src/JmpCodeX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpCodeX86.h -------------------------------------------------------------------------------- /src/JmpOnlyApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpOnlyApiHook.cpp -------------------------------------------------------------------------------- /src/JmpOnlyApiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/JmpOnlyApiHook.h -------------------------------------------------------------------------------- /src/MethodIndiceChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/MethodIndiceChecker.cpp -------------------------------------------------------------------------------- /src/MismatchResultHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/MismatchResultHandler.cpp -------------------------------------------------------------------------------- /src/MismatchResultHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/MismatchResultHandlerFactory.cpp -------------------------------------------------------------------------------- /src/MockObjectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/MockObjectBase.cpp -------------------------------------------------------------------------------- /src/NormalResultHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/NormalResultHandler.cpp -------------------------------------------------------------------------------- /src/NormalResultHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/NormalResultHandlerFactory.cpp -------------------------------------------------------------------------------- /src/OutBoundPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/OutBoundPointer.cpp -------------------------------------------------------------------------------- /src/PendingMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/PendingMatcher.cpp -------------------------------------------------------------------------------- /src/ProcStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ProcStub.cpp -------------------------------------------------------------------------------- /src/RefAny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/RefAny.cpp -------------------------------------------------------------------------------- /src/RepeatStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/RepeatStub.cpp -------------------------------------------------------------------------------- /src/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/Result.cpp -------------------------------------------------------------------------------- /src/ReturnObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ReturnObjectList.cpp -------------------------------------------------------------------------------- /src/ReturnStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ReturnStub.cpp -------------------------------------------------------------------------------- /src/SimpleInvocationRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/SimpleInvocationRecorder.cpp -------------------------------------------------------------------------------- /src/StringConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/StringConstraint.cpp -------------------------------------------------------------------------------- /src/StubContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/StubContainer.cpp -------------------------------------------------------------------------------- /src/StubsMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/StubsMatcher.cpp -------------------------------------------------------------------------------- /src/TestFailureMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/TestFailureMatcher.cpp -------------------------------------------------------------------------------- /src/ThenStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ThenStub.cpp -------------------------------------------------------------------------------- /src/TypeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/TypeString.cpp -------------------------------------------------------------------------------- /src/TypelessConstraintAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/TypelessConstraintAdapter.cpp -------------------------------------------------------------------------------- /src/TypelessStubAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/TypelessStubAdapter.cpp -------------------------------------------------------------------------------- /src/UnixCodeModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/UnixCodeModifier.cpp -------------------------------------------------------------------------------- /src/VirtualTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/VirtualTable.cpp -------------------------------------------------------------------------------- /src/VirtualTableUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/VirtualTableUtils.cpp -------------------------------------------------------------------------------- /src/VoidResultHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/VoidResultHandler.cpp -------------------------------------------------------------------------------- /src/VoidResultHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/VoidResultHandlerFactory.cpp -------------------------------------------------------------------------------- /src/WillStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/WillStub.cpp -------------------------------------------------------------------------------- /src/WinCodeModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/WinCodeModifier.cpp -------------------------------------------------------------------------------- /src/generate_arg_related_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/generate_arg_related_files.py -------------------------------------------------------------------------------- /src/generate_vtbl_related_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/generate_vtbl_related_files.py -------------------------------------------------------------------------------- /src/get_long_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/get_long_opt.py -------------------------------------------------------------------------------- /src/ports/failure/catch2_report_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ports/failure/catch2_report_failure.cpp -------------------------------------------------------------------------------- /src/ports/failure/cppunit_report_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ports/failure/cppunit_report_failure.cpp -------------------------------------------------------------------------------- /src/ports/failure/cpputest_report_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ports/failure/cpputest_report_failure.cpp -------------------------------------------------------------------------------- /src/ports/failure/gtest_report_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ports/failure/gtest_report_failure.cpp -------------------------------------------------------------------------------- /src/ports/failure/stdexcept_report_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/src/ports/failure/stdexcept_report_failure.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/COPYING -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/ExportLite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/ExportLite.ps1 -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/LICENSE -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/Makefile -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/ProjectVar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/ProjectVar.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/build.ps1 -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/build.sh -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/build_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/build_install.ps1 -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/build_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/build_install.sh -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/change-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/change-name.sh -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/BuildGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/BuildGuide -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/ChineseUserManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/ChineseUserManual.md -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/InstallationMSVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/InstallationMSVC.md -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/ProjectHome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/ProjectHome.md -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/SimpleUserInstruction_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/SimpleUserInstruction_zh.md -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/UpdateHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/UpdateHistory.md -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/testngpp-msvc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/testngpp-msvc.pdf -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/docs/testngpp中文指导.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/docs/testngpp中文指导.docx -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/cxxtest/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/cxxtest/TestSuite.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/ltdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/ltdl.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/bool_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/bool_array.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/check_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/check_status.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/class_level_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/class_level_lock.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/cont_ptr_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/cont_ptr_utils.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/debug_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/debug_new.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/fast_mutex.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/fixed_mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/fixed_mem_pool.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/format.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/interface_4cuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/interface_4cuser.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/interface_4cxxuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/interface_4cxxuser.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/interface_4user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/interface_4user.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/interface_4xunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/interface_4xunit.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/mem_pool_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/mem_pool_base.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/object_level_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/object_level_lock.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/pctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/pctimer.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/reporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/set_assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/set_assign.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/static_assert.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/mem_checker/static_mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/mem_checker/static_mem_pool.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/msinttypes/inttypes.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/msinttypes/stdint.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testcpp/testcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testcpp/testcpp.hpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/Any.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/Asserter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/Asserter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/Backward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/Backward.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/DataDrivenDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/DataDrivenDef.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/NoThrowsReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/NoThrowsReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/TestDefMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/TestDefMacros.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/TestFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/TestFixture.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/TestModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/TestModule.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/TypeTraits.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/ExceptionKeywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/ExceptionKeywords.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/PipeReadableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/PipeReadableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/PipeWrittableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/PipeWrittableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/ReadableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/ReadableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/Win32PipeReadableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/Win32PipeReadableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/Win32PipeWrittableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/Win32PipeWrittableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/comm/WrittableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/comm/WrittableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/AssertionFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/AssertionFailure.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/DataDriven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/DataDriven.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/Error.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/Exception.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/Info.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/MemChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/MemChecker.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/Taggable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/Taggable.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TagsFilterRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TagsFilterRule.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestCase.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestCaseInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestCaseInfoReader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestFixtureDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestFixtureDesc.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestFixtureInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestFixtureInfoReader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestSuiteDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestSuiteDesc.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/TestSuiteInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/TestSuiteInfoReader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/internal/Warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/internal/Warning.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/MemLeakCountCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/MemLeakCountCollector.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestCaseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestCaseListener.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestCaseResultCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestCaseResultCollector.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestCaseResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestCaseResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestListener.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestResultCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestResultCollector.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestSuiteListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestSuiteListener.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/listener/TestSuiteResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/listener/TestSuiteResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/EOFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/EOFError.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/EmptyTagsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/EmptyTagsFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/EnvironmentCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/EnvironmentCleaner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/FixtureTagsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/FixtureTagsFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/GeneralTagsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/GeneralTagsFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/GeneralTestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/GeneralTestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/MatchAllTagsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/MatchAllTagsFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/NameMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/NameMatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/OrCompositeTaggableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/OrCompositeTaggableFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/OrCompositeTestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/OrCompositeTestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/PosixFNMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/PosixFNMatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/ResourceCheckPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/ResourceCheckPoint.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/Sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/Sandbox.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SandboxHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SandboxHandler.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SandboxProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SandboxProcessor.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SandboxTypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SandboxTypedef.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SandboxTypedefUnix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SandboxTypedefUnix.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestCaseRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestCaseRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestHierarchyRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestHierarchyRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestResultManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestResultManager.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/SimpleTestResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TaggableObjFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TaggableObjFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TagsFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TagsFilters.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TagsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TagsParser.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseContainer.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseHierarchy.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseResultDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseResultDispatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseRunnerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseRunnerFactory.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseSandbox.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseSandboxHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestCaseSandboxHandler.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestFilterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestFilterFactory.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureContext.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureRunnerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestFixtureRunnerFactory.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestHierarchyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestHierarchyHandler.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestHierarchyRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestHierarchyRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestResultDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestResultDispatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestResultManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestResultManager.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestRunnerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestRunnerContext.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteContext.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteResultDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteResultDispatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/TestSuiteRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/WildcardTestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/WildcardTestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/loaders/DLModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/loaders/DLModuleLoader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/loaders/LTModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/loaders/LTModuleLoader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/loaders/ModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/loaders/ModuleLoader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/runner/loaders/TestSuiteLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/runner/loaders/TestSuiteLoader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/testngpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/testngpp.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/testngpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/testngpp.hpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/ConsoleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/ConsoleState.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/Formatter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/InternalError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/InternalError.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/OptionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/OptionList.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/StringList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/StringList.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/StringToOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/StringToOptions.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/StupidTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/StupidTimer.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/utils/TypeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/utils/TypeString.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/win32/Win32Sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/win32/Win32Sandbox.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/win32/Win32TestCaseSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/win32/Win32TestCaseSandbox.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/include/testngpp/win32/Win32ThrowLastError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/include/testngpp/win32/Win32ThrowLastError.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/premake4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/premake4.exe -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/TestBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/TestBar.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/TestCxxTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/TestCxxTest.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/TestFoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/TestFoo.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/TestMemLeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/TestMemLeak.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/run-sample.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/run-sample.bat.in -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/samples/run-sample.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/samples/run-sample.in -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/premake4.lua -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/pycompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/pycompile.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/setup.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/setup_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/setup_linux.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/AnnotationParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/AnnotationParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/ClassDeclParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/ClassDeclParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/DataProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/DataProvider.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/DataProviderParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/DataProviderParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/ElemParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/ElemParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Fixture.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/FixtureParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/FixtureParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Generator.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/LogicalLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/LogicalLine.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Message.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Name.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Output.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase0.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase1.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase1Result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase1Result.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase2.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase3.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Phase4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Phase4.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/PreprocessScope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/PreprocessScope.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/PreprocessScopeParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/PreprocessScopeParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Process.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/TagsParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/TagsParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/TestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/TestCase.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/TestCaseParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/TestCaseParser.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/TestScope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/TestScope.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Useless.py: -------------------------------------------------------------------------------- 1 | 2 | class Useless: 3 | pass 4 | -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/scripts/testngppgen/Utils.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/scripts/testngppgen/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | __all__ = ["Generator"] 4 | -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/Formatter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/MemChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/MemChecker.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/TestCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/TestCase.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/TestFixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/TestFixture.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/TestSuiteDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/TestSuiteDesc.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/TypeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/TypeString.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/except/AssertionFailure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/except/AssertionFailure.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/except/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/except/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/except/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/except/Exception.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/StdoutTestListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/StdoutTestListener.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/XMLBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/XMLBuilder.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/XMLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/XMLBuilder.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/XMLTestListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/XMLTestListener.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/listeners/XMLTestListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/listeners/XMLTestListener.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/NoThrowsReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/NoThrowsReporter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/bool_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/bool_array.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/check_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/check_status.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/debug_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/debug_new.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/interface_4xunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/interface_4xunit.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/mem_pool_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/mem_pool_base.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/reporter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/mem_checker/static_mem_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/mem_checker/static_mem_pool.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/ResourceCheckPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/ResourceCheckPoint.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/TestRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/TestRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/TestRunnerMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/TestRunnerMain.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/GeneralTestFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/GeneralTestFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/OrCompositeTestFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/OrCompositeTestFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/PosixFNMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/PosixFNMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/TestFilterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/TestFilterFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/WildcardTestFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/WildcardTestFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/Win32Fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/Win32Fnmatch.c -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/filters/Win32Fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/filters/Win32Fnmatch.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/DLModuleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/DLModuleLoader.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/DLModuleLoaderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/DLModuleLoaderFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/LTModuleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/LTModuleLoader.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/LTModuleLoaderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/LTModuleLoaderFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/ModuleTestListenerLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/ModuleTestListenerLoader.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/ModuleTestSuiteLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/ModuleTestSuiteLoader.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/ModuleTestSuiteLoaderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/ModuleTestSuiteLoaderFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/Win32DllModuleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/Win32DllModuleLoader.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/loaders/Win32DllModuleLoaderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/loaders/Win32DllModuleLoaderFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/reports/SimpleTestCaseResultReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/reports/SimpleTestCaseResultReporter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultDispatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultManager.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/reports/SimpleTestResultReporter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/reports/SmartTestCaseResultCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/reports/SmartTestCaseResultCollector.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/SimpleTestCaseRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/SimpleTestCaseRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/SimpleTestHierarchyRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/SimpleTestHierarchyRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestCaseHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestCaseHierarchy.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestCaseRunnerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestCaseRunnerFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestFixtureContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestFixtureContext.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestFixtureRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestFixtureRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestFixtureRunnerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestFixtureRunnerFactory.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestHierarchyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestHierarchyHandler.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestRunnerContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestRunnerContext.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestSuiteContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestSuiteContext.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/runners/TestSuiteRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/runners/TestSuiteRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/Sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/Sandbox.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/SandboxProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/SandboxProcessor.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandbox.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandboxHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandboxHandler.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandboxResultDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/TestCaseSandboxResultDecoder.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/sandbox/TestHierarchySandboxRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/sandbox/TestHierarchySandboxRunner.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/AndCompositeTaggableFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/AndCompositeTaggableFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/EmptyTagsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/EmptyTagsFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/FixtureTagsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/FixtureTagsFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/GeneralTagsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/GeneralTagsFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/MatchAllTagsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/MatchAllTagsFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/NotCompositeTaggableFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/NotCompositeTaggableFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/OrCompositeTaggableFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/OrCompositeTaggableFilter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/TagsFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/TagsFilters.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/tags/TagsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/tags/TagsParser.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/utils/PipeReadableChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/utils/PipeReadableChannel.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/utils/PipeWrittableChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/utils/PipeWrittableChannel.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/GetLastError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/GetLastError.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/TestCaseSandboxRunnerMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/TestCaseSandboxRunnerMain.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/Win32PipeReadableChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/Win32PipeReadableChannel.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/Win32PipeWrittableChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/Win32PipeWrittableChannel.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/Win32Sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/Win32Sandbox.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/runner/win32/Win32TestCaseSandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/runner/win32/Win32TestCaseSandbox.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/ConsoleState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/ConsoleState.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/GetOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/GetOpt.c -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/GetOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/GetOpt.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/OptionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/OptionList.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/StringToOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/StringToOptions.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/src/utils/StupidTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/src/utils/StupidTimer.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ApiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ApiHook.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ApiHookKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ApiHookKey.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Asserter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Asserter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/CheckWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/CheckWith.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Constraint.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/DieStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/DieStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Exception.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Formatter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Functor.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Ignore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Ignore.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Invocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Invocation.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Invokable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Invokable.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsAnything.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsConst.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsEqual.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsLessThan.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsMirror.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsNotEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsNotEqual.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/IsRef.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/JmpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/JmpCode.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Matcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Method.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/MockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/MockObject.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/MsvcRtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/MsvcRtti.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/OutBound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/OutBound.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ProcStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ProcStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/RepeatStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/RepeatStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Result.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ReturnStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ReturnStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Spy.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Stub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ThenStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/ThenStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/TypeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/TypeString.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/TypeTraits.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/Void.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/WillStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/WillStub.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockable.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockcpp.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mockcpp.hpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mokc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/mokc.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/types/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/types/Any.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/include/mockcpp/utils.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AfterMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AfterMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Any.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AnyBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AnyBase.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AnyCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AnyCast.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ApiHook.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ApiHookKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ApiHookKey.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Asserter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Asserter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AssertionFailedError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/AssertionFailedError.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/BeforeMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/BeforeMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/CallerMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/CallerMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ChainableMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ChainableMockObject.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ConstraintSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ConstraintSet.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DefaultMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DefaultMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DefaultStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DefaultStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DieStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DieStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DummyApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/DummyApiHook.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Exception.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ExpectsMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ExpectsMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Formatter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/GlobalMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/GlobalMockObject.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/HookMockObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/HookMockObject.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IdentityBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IdentityBuilder.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Ignore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Ignore.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IgnoreReturnStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IgnoreReturnStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InterfaceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InterfaceInfo.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Invocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Invocation.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvocationId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvocationId.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvocationMocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvocationMocker.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedAtLeast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedAtLeast.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedAtMost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedAtMost.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedExactly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedExactly.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedOnce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/InvokedOnce.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsAnythingHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsAnythingHelper.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringContains.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringEndWith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringEndWith.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringStartWith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/IsStringStartWith.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCode.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeArch.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeX64.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpCodeX86.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpOnlyApiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpOnlyApiHook.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpOnlyApiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/JmpOnlyApiHook.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/MockObjectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/MockObjectBase.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/OutBoundPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/OutBoundPointer.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/PendingMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/PendingMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ProcStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ProcStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/RefAny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/RefAny.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/RepeatStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/RepeatStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/Result.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ReturnObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ReturnObjectList.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ReturnStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ReturnStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StringConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StringConstraint.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StubContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StubContainer.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StubsMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/StubsMatcher.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ThenStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/ThenStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/TypeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/TypeString.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/UnixCodeModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/UnixCodeModifier.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VirtualTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VirtualTable.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VirtualTableUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VirtualTableUtils.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VoidResultHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/VoidResultHandler.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/WillStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/WillStub.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/WinCodeModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/WinCodeModifier.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/get_long_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/mockcpp/src/get_long_opt.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/ProjectVar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/ProjectVar.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/include/ltdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/include/ltdl.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/premake4.lua -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/pycompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/pycompile.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/setup.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/testngppstgen/Useless.py: -------------------------------------------------------------------------------- 1 | 2 | class Useless: 3 | pass 4 | -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/scripts/testngppstgen/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | __all__ = ["Generator"] 4 | -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/Formatter.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/MemChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/MemChecker.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestCase.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestFixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestFixture.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestSuiteDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TestSuiteDesc.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TypeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/TypeString.cpp -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/utils/GetOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/utils/GetOpt.c -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/utils/GetOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/3rdparty/testngppst/src/utils/GetOpt.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/CMakeLists.txt -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/FTestFixture1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/FTestFixture1.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/FTestFixture2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/FTestFixture2.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/MyTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/MyTestCase.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestAsserter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestAsserter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestAssertionFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestAssertionFailure.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestDataDriven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestDataDriven.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestExceptionKeywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestExceptionKeywords.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestFixtureDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestFixtureDef.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestGeneralTestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestGeneralTestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestMemChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestMemChecker.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestModuleTestSuiteLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestModuleTestSuiteLoader.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestOrCompositeTestFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestOrCompositeTestFilter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestPipeReadableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestPipeReadableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestPipeWrittableChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestPipeWrittableChannel.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestPosixFNMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestPosixFNMatcher.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestSandbox.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestSandboxProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestSandboxProcessor.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestSimpleTestSuiteResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestSimpleTestSuiteResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestStringToOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestStringToOptions.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTagsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTagsParser.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestCase.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestCaseHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestCaseHierarchy.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestCaseSandboxResultReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestCaseSandboxResultReporter.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestFilterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestFilterFactory.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestFixtureDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestFixtureDesc.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestFixtureSandboxRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestFixtureSandboxRunner.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestSuiteContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestSuiteContext.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestTestSuiteDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestTestSuiteDesc.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestXMLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestXMLBuilder.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/TestXMLTestListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/TestXMLTestListener.h -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/gt.py -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/tests/ut/testngpp-ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/tests/ut/testngpp-ut -------------------------------------------------------------------------------- /tests/3rdparty/testngpp/update-testngppst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/3rdparty/testngpp/update-testngppst.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ut/MockMethodSamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/MockMethodSamples.h -------------------------------------------------------------------------------- /tests/ut/TestAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestAny.h -------------------------------------------------------------------------------- /tests/ut/TestApiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestApiHook.h -------------------------------------------------------------------------------- /tests/ut/TestApiHookBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestApiHookBase.h -------------------------------------------------------------------------------- /tests/ut/TestApiHookStdcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestApiHookStdcall.h -------------------------------------------------------------------------------- /tests/ut/TestChainableMockMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestChainableMockMethod.h -------------------------------------------------------------------------------- /tests/ut/TestChainableMockMethodContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestChainableMockMethodContainer.h -------------------------------------------------------------------------------- /tests/ut/TestChainableMockMethodNameKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestChainableMockMethodNameKey.h -------------------------------------------------------------------------------- /tests/ut/TestChainableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestChainableObject.h -------------------------------------------------------------------------------- /tests/ut/TestCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestCheck.h -------------------------------------------------------------------------------- /tests/ut/TestConstraintSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestConstraintSet.h -------------------------------------------------------------------------------- /tests/ut/TestDelegatedMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestDelegatedMethod.h -------------------------------------------------------------------------------- /tests/ut/TestDestructorChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestDestructorChecker.h -------------------------------------------------------------------------------- /tests/ut/TestFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestFormatter.h -------------------------------------------------------------------------------- /tests/ut/TestHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestHolder.h -------------------------------------------------------------------------------- /tests/ut/TestIgnoreReturnValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIgnoreReturnValue.h -------------------------------------------------------------------------------- /tests/ut/TestIncrementStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIncrementStub.h -------------------------------------------------------------------------------- /tests/ut/TestInterfaceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestInterfaceInfo.h -------------------------------------------------------------------------------- /tests/ut/TestInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestInvocation.h -------------------------------------------------------------------------------- /tests/ut/TestInvocationMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestInvocationMocker.h -------------------------------------------------------------------------------- /tests/ut/TestIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIsEqual.h -------------------------------------------------------------------------------- /tests/ut/TestIsStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIsStringContains.h -------------------------------------------------------------------------------- /tests/ut/TestIsStringEndWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIsStringEndWith.h -------------------------------------------------------------------------------- /tests/ut/TestIsStringStartWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestIsStringStartWith.h -------------------------------------------------------------------------------- /tests/ut/TestMethodInfoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestMethodInfoReader.h -------------------------------------------------------------------------------- /tests/ut/TestMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestMockObject.h -------------------------------------------------------------------------------- /tests/ut/TestMockObject2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestMockObject2.h -------------------------------------------------------------------------------- /tests/ut/TestMockcppSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestMockcppSample.h -------------------------------------------------------------------------------- /tests/ut/TestNonvirtualMethodMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestNonvirtualMethodMocker.h -------------------------------------------------------------------------------- /tests/ut/TestOverloadMethodMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestOverloadMethodMocker.h -------------------------------------------------------------------------------- /tests/ut/TestReturnObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestReturnObjectList.h -------------------------------------------------------------------------------- /tests/ut/TestSmartPointerChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestSmartPointerChecker.h -------------------------------------------------------------------------------- /tests/ut/TestStaticMethodMocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestStaticMethodMocker.h -------------------------------------------------------------------------------- /tests/ut/TestStringConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestStringConstraint.h -------------------------------------------------------------------------------- /tests/ut/TestStubContainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestStubContainter.h -------------------------------------------------------------------------------- /tests/ut/TestVirtualTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/TestVirtualTable.h -------------------------------------------------------------------------------- /tests/ut/gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/gt.py -------------------------------------------------------------------------------- /tests/ut/mockcpp-ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tests/ut/mockcpp-ut -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/build_functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tools/build_functions.ps1 -------------------------------------------------------------------------------- /tools/build_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tools/build_functions.sh -------------------------------------------------------------------------------- /tools/testngpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinojelly/mockcpp/HEAD/tools/testngpp.cmake --------------------------------------------------------------------------------