├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── Core └── Types │ ├── Next.Core.DisposableValue.pas │ ├── Next.Core.FailureReason.pas │ ├── Next.Core.Promises.pas │ ├── Next.Core.TTry.pas │ └── Next.Core.Void.pas ├── LICENSE ├── Test ├── DelphiMocks │ ├── .gitignore │ ├── .gitmodules │ ├── Build │ │ ├── TestAndBuild.fbp7 │ │ └── TestAndBuild.fbp8 │ ├── Examples │ │ ├── Delphi.Mocks.Example.ProjectSaveCheckVisitor.pas │ │ ├── Delphi.Mocks.Examples.Factory.pas │ │ ├── Delphi.Mocks.Examples.Implement.pas │ │ ├── Delphi.Mocks.Examples.Interfaces.pas │ │ ├── Delphi.Mocks.Examples.Matchers.pas │ │ ├── Delphi.Mocks.Examples.Objects.pas │ │ ├── Sample1.dpr │ │ ├── Sample1.dproj │ │ └── Sample1Main.pas │ ├── LICENSE.txt │ ├── README.md │ ├── Source │ │ ├── Delphi.Mocks.AutoMock.pas │ │ ├── Delphi.Mocks.Behavior.pas │ │ ├── Delphi.Mocks.Expectation.pas │ │ ├── Delphi.Mocks.Helpers.pas │ │ ├── Delphi.Mocks.Interfaces.pas │ │ ├── Delphi.Mocks.MethodData.pas │ │ ├── Delphi.Mocks.ObjectProxy.pas │ │ ├── Delphi.Mocks.ParamMatcher.pas │ │ ├── Delphi.Mocks.Proxy.TypeInfo.pas │ │ ├── Delphi.Mocks.Proxy.pas │ │ ├── Delphi.Mocks.ReturnTypePatch.pas │ │ ├── Delphi.Mocks.Utils.pas │ │ ├── Delphi.Mocks.Validation.pas │ │ ├── Delphi.Mocks.WeakReference.pas │ │ ├── Delphi.Mocks.When.pas │ │ ├── Delphi.Mocks.inc │ │ ├── Delphi.Mocks.pas │ │ ├── DelphiMocks.dpk │ │ ├── DelphiMocks.dproj │ │ ├── DelphiMocks104.dpk │ │ ├── DelphiMocks104.dproj │ │ ├── DelphiMocksXE5.dpk │ │ └── DelphiMocksXE5.dproj │ ├── Tests │ │ ├── .gitignore │ │ ├── Delphi.Mocks.Examples.Factory.pas │ │ ├── Delphi.Mocks.Examples.Implement.pas │ │ ├── Delphi.Mocks.Examples.Matchers.pas │ │ ├── Delphi.Mocks.Examples.Objects.pas │ │ ├── Delphi.Mocks.Tests.AutoMock.pas │ │ ├── Delphi.Mocks.Tests.Base.pas │ │ ├── Delphi.Mocks.Tests.Behavior.pas │ │ ├── Delphi.Mocks.Tests.Expectations.pas │ │ ├── Delphi.Mocks.Tests.InterfaceProxy.pas │ │ ├── Delphi.Mocks.Tests.Interfaces.pas │ │ ├── Delphi.Mocks.Tests.MethodData.pas │ │ ├── Delphi.Mocks.Tests.ObjectProxy.pas │ │ ├── Delphi.Mocks.Tests.Objects.pas │ │ ├── Delphi.Mocks.Tests.OpenArrayIntf.pas │ │ ├── Delphi.Mocks.Tests.Proxy.pas │ │ ├── Delphi.Mocks.Tests.ProxyBase.pas │ │ ├── Delphi.Mocks.Tests.Stubs.pas │ │ ├── Delphi.Mocks.Tests.TValue.pas │ │ ├── Delphi.Mocks.Tests.Utils.pas │ │ ├── Delphi.Mocks.Tests.dpr │ │ ├── Delphi.Mocks.Tests.dproj │ │ ├── Delphi.Mocks.Utils.Tests.pas │ │ └── MemoryLeakTest │ │ │ ├── FastMM4.pas │ │ │ ├── FastMM4Messages.pas │ │ │ ├── FastMM4Options.inc │ │ │ ├── MemoryLeakTest.dpr │ │ │ ├── MemoryLeakTest.dproj │ │ │ └── MockMemoryLeakTest.pas │ └── VSoft.DelphiMocks.dspec ├── Next.Core.Test.Assert.pas ├── Next.Core.Test.GenericTest.pas ├── TestNext.dpr ├── TestNext.dproj └── Types │ ├── Next.Core.TestDisposableValue.pas │ ├── Next.Core.TestFailureReason.pas │ ├── Next.Core.TestPromises.pas │ ├── Next.Core.TestTry.pas │ └── Next.Core.TestVoid.pas └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Core/Types/Next.Core.DisposableValue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Core/Types/Next.Core.DisposableValue.pas -------------------------------------------------------------------------------- /Core/Types/Next.Core.FailureReason.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Core/Types/Next.Core.FailureReason.pas -------------------------------------------------------------------------------- /Core/Types/Next.Core.Promises.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Core/Types/Next.Core.Promises.pas -------------------------------------------------------------------------------- /Core/Types/Next.Core.TTry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Core/Types/Next.Core.TTry.pas -------------------------------------------------------------------------------- /Core/Types/Next.Core.Void.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Core/Types/Next.Core.Void.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/LICENSE -------------------------------------------------------------------------------- /Test/DelphiMocks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/.gitignore -------------------------------------------------------------------------------- /Test/DelphiMocks/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/.gitmodules -------------------------------------------------------------------------------- /Test/DelphiMocks/Build/TestAndBuild.fbp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Build/TestAndBuild.fbp7 -------------------------------------------------------------------------------- /Test/DelphiMocks/Build/TestAndBuild.fbp8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Build/TestAndBuild.fbp8 -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Example.ProjectSaveCheckVisitor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Example.ProjectSaveCheckVisitor.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Factory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Factory.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Implement.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Implement.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Interfaces.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Matchers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Matchers.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Objects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Delphi.Mocks.Examples.Objects.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Sample1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Sample1.dpr -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Sample1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Sample1.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Examples/Sample1Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Examples/Sample1Main.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/LICENSE.txt -------------------------------------------------------------------------------- /Test/DelphiMocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/README.md -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.AutoMock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.AutoMock.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Behavior.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Behavior.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Expectation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Expectation.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Helpers.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Interfaces.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.MethodData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.MethodData.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.ObjectProxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.ObjectProxy.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.ParamMatcher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.ParamMatcher.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Proxy.TypeInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Proxy.TypeInfo.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Proxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Proxy.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.ReturnTypePatch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.ReturnTypePatch.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Utils.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.Validation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.Validation.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.WeakReference.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.WeakReference.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.When.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.When.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.inc -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/Delphi.Mocks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/Delphi.Mocks.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocks.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocks.dpk -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocks.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocks.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocks104.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocks104.dpk -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocks104.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocks104.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocksXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocksXE5.dpk -------------------------------------------------------------------------------- /Test/DelphiMocks/Source/DelphiMocksXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Source/DelphiMocksXE5.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/.gitignore -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Factory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Factory.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Implement.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Implement.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Matchers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Matchers.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Objects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Examples.Objects.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.AutoMock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.AutoMock.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Base.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Behavior.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Behavior.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Expectations.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Expectations.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.InterfaceProxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.InterfaceProxy.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Interfaces.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.MethodData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.MethodData.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.ObjectProxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.ObjectProxy.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Objects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Objects.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.OpenArrayIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.OpenArrayIntf.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Proxy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Proxy.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.ProxyBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.ProxyBase.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Stubs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Stubs.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.TValue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.TValue.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.Utils.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.dpr -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Tests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Tests.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/Delphi.Mocks.Utils.Tests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/Delphi.Mocks.Utils.Tests.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4Messages.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4Options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/FastMM4Options.inc -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/MemoryLeakTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/MemoryLeakTest.dpr -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/MemoryLeakTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/MemoryLeakTest.dproj -------------------------------------------------------------------------------- /Test/DelphiMocks/Tests/MemoryLeakTest/MockMemoryLeakTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/Tests/MemoryLeakTest/MockMemoryLeakTest.pas -------------------------------------------------------------------------------- /Test/DelphiMocks/VSoft.DelphiMocks.dspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/DelphiMocks/VSoft.DelphiMocks.dspec -------------------------------------------------------------------------------- /Test/Next.Core.Test.Assert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Next.Core.Test.Assert.pas -------------------------------------------------------------------------------- /Test/Next.Core.Test.GenericTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Next.Core.Test.GenericTest.pas -------------------------------------------------------------------------------- /Test/TestNext.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/TestNext.dpr -------------------------------------------------------------------------------- /Test/TestNext.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/TestNext.dproj -------------------------------------------------------------------------------- /Test/Types/Next.Core.TestDisposableValue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Types/Next.Core.TestDisposableValue.pas -------------------------------------------------------------------------------- /Test/Types/Next.Core.TestFailureReason.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Types/Next.Core.TestFailureReason.pas -------------------------------------------------------------------------------- /Test/Types/Next.Core.TestPromises.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Types/Next.Core.TestPromises.pas -------------------------------------------------------------------------------- /Test/Types/Next.Core.TestTry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Types/Next.Core.TestTry.pas -------------------------------------------------------------------------------- /Test/Types/Next.Core.TestVoid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/Test/Types/Next.Core.TestVoid.pas -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laurensvanrun/Delphi-Promises/HEAD/readme.md --------------------------------------------------------------------------------