-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
Signed-off-by: Whit Waldo <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: InternalsVisibleTo("Dapr.Messaging.Test")] | ||
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 6.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 6.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 6.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 6.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (6.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (6.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (6.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (6.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (7.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (7.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (7.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (7.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Build
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Build
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Build
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Build
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 7.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 7.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 7.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 7.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (8.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (8.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (8.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / run integration tests (8.0)
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 8.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 8.0
Check failure on line 3 in src/Dapr.Messaging/AssemblyInfo.cs GitHub Actions / Test .NET 8.0
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.msbuild" Version="2.9.0"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="FluentAssertions" Version="5.9.0" /> | ||
<PackageReference Include="Google.Protobuf" Version="3.15.8" /> | ||
<PackageReference Include="Grpc.Core.Testing" Version="2.46.3" /> | ||
<PackageReference Include="Grpc.Net.Client" Version="2.52.0" /> | ||
<PackageReference Include="Grpc.Tools" Version="2.47.0" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" /> | ||
<PackageReference Include="moq" Version="4.14.7" /> | ||
<PackageReference Include="protobuf-net.Grpc.AspNetCore" Version="1.0.123" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.8" /> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Protobuf Include="Protos\test.proto" ProtoRoot="Protos" GrpcServices="Client" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Dapr.Messaging\Dapr.Messaging.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Using Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// ------------------------------------------------------------------------ | ||
// Copyright 2021 The Dapr Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// ------------------------------------------------------------------------ | ||
|
||
syntax = "proto3"; | ||
|
||
option csharp_namespace = "Dapr.Client.Autogen.Test.Grpc.v1"; | ||
|
||
message TestRun { | ||
repeated TestCase tests = 1; | ||
} | ||
|
||
message TestCase { | ||
string name = 1; | ||
} | ||
|
||
message Request { | ||
string RequestParameter = 1; | ||
} | ||
|
||
message Response { | ||
string Name = 1; | ||
} |