Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PocketIC integration #136

Merged
merged 35 commits into from
Nov 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f87ca0a
Adding pocketic
Gekctek Oct 15, 2024
57e287b
Copy binaries to output
Gekctek Oct 15, 2024
5e53c10
Fixing
Gekctek Oct 15, 2024
fa9a29d
Adding line test
Gekctek Oct 15, 2024
72b7991
Client
Gekctek Oct 15, 2024
1565400
Update EdjCase.ICP.PocketIC.csproj
Gekctek Oct 15, 2024
0885450
Update PocketIcClient.cs
Gekctek Oct 15, 2024
6c7b0b8
Update PocketIcClient.cs
Gekctek Oct 15, 2024
4af2e59
Removing lf enforcement
Gekctek Oct 16, 2024
64abf2d
Rename folder
Gekctek Oct 16, 2024
b661ae7
Fixing tests
Gekctek Oct 16, 2024
9296984
a
Gekctek Oct 17, 2024
bcc169f
Tests work
Gekctek Oct 17, 2024
e4eaf00
Fixing tests
Gekctek Oct 17, 2024
9cdc1ab
Removing dead code
Gekctek Oct 17, 2024
c874ba4
Merge remote-tracking branch 'edjcase/main' into PocketIC
Gekctek Oct 21, 2024
f50c364
Adding missing doc
Gekctek Oct 21, 2024
d52760d
Adding PocketIC Tests and .net8
Gekctek Oct 21, 2024
1cdbc9f
Adding to solution and XUnit
Gekctek Oct 21, 2024
84065af
Adding tests
Gekctek Oct 21, 2024
8cd83f3
Adding more methods
Gekctek Oct 23, 2024
e55f827
Merge remote-tracking branch 'edjcase/main' into PocketIC
Gekctek Oct 28, 2024
f36087f
IPocketIcHttpClient
Gekctek Oct 28, 2024
5257f54
Adding tests
Gekctek Oct 28, 2024
043b3ce
Adding routes
Gekctek Oct 30, 2024
665a023
HttpGateway
Gekctek Nov 3, 2024
7121c41
Auto progress time
Gekctek Nov 4, 2024
82a25a7
Documenting PocketIc.cs
Gekctek Nov 4, 2024
2b4dd97
IPocketIcHttpClient.cs docs
Gekctek Nov 4, 2024
f776c51
PocketIcHttpClient.cs docs
Gekctek Nov 4, 2024
57dcc3e
PocketIcServer + Request/Response models docs
Gekctek Nov 4, 2024
b648c76
Docs
Gekctek Nov 4, 2024
14fe501
Misc Candid/PocketIC tweaks and tests
Gekctek Nov 4, 2024
164f617
Updating README for pocketic
Gekctek Nov 4, 2024
51f764c
Fixing Async
Gekctek Nov 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding missing doc
  • Loading branch information
Gekctek committed Oct 21, 2024
commit f50c364c59fedc2f12d2450f366762bbce51ac9d
4 changes: 3 additions & 1 deletion src/Candid/Models/Values/CandidFunc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public class CandidFunc : CandidValue
/// </summary>
public bool IsOpaqueReference { get; }


/// <summary>
/// Specifies the service and method of the func if is not an opaque reference, otherwise will be null
/// </summary>
public (CandidService Service, string Method)? ServiceInfo { get; }

/// <param name="service">The candid service definition the function lives in</param>
Expand Down