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

fix scope of tests #10

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion exercises/testing-code/solution/Tests/ActivityTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using TemporalioDurableExecution.Workflow;
using Xunit;

public class TranslationActivityTests
internal class TranslationActivityTests

Check failure on line 7 in exercises/testing-code/solution/Tests/ActivityTest.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)

Check failure on line 7 in exercises/testing-code/solution/Tests/ActivityTest.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (macos-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)
{
private static readonly HttpClient Client = new HttpClient();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using TemporalioDurableExecution.Workflow;
using Xunit;

public class TranslationWorkflowMockTests
internal class TranslationWorkflowMockTests

Check failure on line 9 in exercises/testing-code/solution/Tests/TranslationWorkflowMockTests.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)

Check failure on line 9 in exercises/testing-code/solution/Tests/TranslationWorkflowMockTests.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (macos-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)
{
private static readonly HttpClient Client = new HttpClient();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using TemporalioDurableExecution.Workflow;
using Xunit;

public class TranslationWorkflowTests
internal class TranslationWorkflowTests

Check failure on line 9 in exercises/testing-code/solution/Tests/TranslationWorkflowTests.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (ubuntu-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)

Check failure on line 9 in exercises/testing-code/solution/Tests/TranslationWorkflowTests.cs

View workflow job for this annotation

GitHub Actions / build-lint-test (macos-latest)

Test classes must be public. Add or change the visibility modifier of the test class to public. (https://xunit.net/xunit.analyzers/rules/xUnit1000)
{
private static readonly HttpClient Client = new HttpClient();

Expand Down
Loading