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

Feature/upper case plugin #255

Merged
merged 2 commits into from
Jun 19, 2024

- added AzDevopsAuthorizeEnvironmentPipeline_v1.cs

7f3e8da
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Feature/upper case plugin #255

- added AzDevopsAuthorizeEnvironmentPipeline_v1.cs
7f3e8da
Select commit
Loading
Failed to load commit list.
GitHub Actions / Tests Results failed Jun 19, 2024 in 0s

11 passed, 3 failed and 0 skipped

Tests failed

Report Passed Failed Skipped Time
tests/Nox.Cli.Tests/TestResults/test-results.trx 1✅ 2s
tests/Plugin.Core.Tests/TestResults/test-results.trx 3❌ 2s
tests/Plugin.File.Tests/TestResults/test-results.trx 6✅ 929ms
tests/Plugin.Git.Tests/TestResults/test-results.trx 3✅ 1s
tests/Plugin.Powershell.Tests/TestResults/test-results.trx 1✅ 2s

✅ tests/Nox.Cli.Tests/TestResults/test-results.trx

1 tests were completed in 2s with 1 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
Nox.Cli.Tests.Extensions.JobExtensionsTests 1✅ 158ms

✅ Nox.Cli.Tests.Extensions.JobExtensionsTests

✅ WhenCloneJobShouldSucceed(fixture: [···])

❌ tests/Plugin.Core.Tests/TestResults/test-results.trx

3 tests were completed in 2s with 0 passed, 3 failed and 0 skipped.

Test suite Passed Failed Skipped Time
Plugin.Core.Tests.SnakeNameTests 3❌ 187ms

❌ Plugin.Core.Tests.SnakeNameTests

❌ Can_Convert_To_Snake_Name(sourceValue: "Hello.World", expectedValue: "hello_world")
	Assert.Single() Failure: The collection contained 3 items
	Collection: [["result"] = "Hello_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
❌ Can_Convert_To_Snake_Name(sourceValue: "HELLO.World", expectedValue: "hello_world")
	Assert.Single() Failure: The collection contained 3 items
	Collection: [["result"] = "HELLO_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
❌ Can_Convert_To_Snake_Name(sourceValue: "HelloWorld", expectedValue: "helloworld")
	Assert.Single() Failure: The collection contained 3 items
	Collection: [["result"] = "HelloWorld", ["result-lower"] = "helloworld", ["result-upper"] = "HELLOWORLD"]

✅ tests/Plugin.File.Tests/TestResults/test-results.trx

6 tests were completed in 929ms with 6 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
Plugin.File.Tests.CopyFileTests 3✅ 18ms
Plugin.File.Tests.CopyFolderTests 1✅ 169ms
Plugin.File.Tests.FileRenameTests 1✅ 168ms
Plugin.File.Tests.FolderRenameTests 1✅ 169ms

✅ Plugin.File.Tests.CopyFileTests

✅ Can_copy_a_File_if_destination_folder_does_not_exist
✅ Can_copy_a_File_if_destination_folder_exists_and_overwrite_specified
✅ Must_not_copy_if_destination_folder_exists_and_overwrite_not_specified

✅ Plugin.File.Tests.CopyFolderTests

✅ Can_copy_a_File_if_destination_folder_does_not_exist

✅ Plugin.File.Tests.FileRenameTests

✅ Can_Rename_a_File

✅ Plugin.File.Tests.FolderRenameTests

✅ Can_Rename_a_Folder

✅ tests/Plugin.Git.Tests/TestResults/test-results.trx

3 tests were completed in 1s with 3 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
Plugin.Git.Tests.InitTests 3✅ 348ms

✅ Plugin.Git.Tests.InitTests

✅ Can_initialize_a_local_git_repo
✅ Must_get_warning_if_initializing_more_than_once
✅ Must_not_get_warning_if_initializing_more_than_once_and_suppress_warnings_on

✅ tests/Plugin.Powershell.Tests/TestResults/test-results.trx

1 tests were completed in 2s with 1 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
Plugin.Powershell.Tests.PwshTests 1✅ 867ms

✅ Plugin.Powershell.Tests.PwshTests

✅ Can_copy_a_File_if_destination_folder_does_not_exist

Annotations

Check failure on line 34 in tests/Plugin.Core.Tests/SnakeNameTests.cs

See this annotation in the file changed.

@github-actions github-actions / Tests Results

Plugin.Core.Tests.SnakeNameTests ► Can_Convert_To_Snake_Name(sourceValue: "Hello.World", expectedValue: "hello_world")

Failed test found in:
  tests/Plugin.Core.Tests/TestResults/test-results.trx
Error:
  Assert.Single() Failure: The collection contained 3 items
  Collection: [["result"] = "Hello_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
Raw output
Assert.Single() Failure: The collection contained 3 items
Collection: [["result"] = "Hello_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
   at Plugin.Core.Tests.SnakeNameTests.Can_Convert_To_Snake_Name(String sourceValue, String expectedValue) in /home/runner/work/Nox.Cli/Nox.Cli/tests/Plugin.Core.Tests/SnakeNameTests.cs:line 34
--- End of stack trace from previous location ---

Check failure on line 34 in tests/Plugin.Core.Tests/SnakeNameTests.cs

See this annotation in the file changed.

@github-actions github-actions / Tests Results

Plugin.Core.Tests.SnakeNameTests ► Can_Convert_To_Snake_Name(sourceValue: "HELLO.World", expectedValue: "hello_world")

Failed test found in:
  tests/Plugin.Core.Tests/TestResults/test-results.trx
Error:
  Assert.Single() Failure: The collection contained 3 items
  Collection: [["result"] = "HELLO_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
Raw output
Assert.Single() Failure: The collection contained 3 items
Collection: [["result"] = "HELLO_World", ["result-lower"] = "hello_world", ["result-upper"] = "HELLO_WORLD"]
   at Plugin.Core.Tests.SnakeNameTests.Can_Convert_To_Snake_Name(String sourceValue, String expectedValue) in /home/runner/work/Nox.Cli/Nox.Cli/tests/Plugin.Core.Tests/SnakeNameTests.cs:line 34
--- End of stack trace from previous location ---

Check failure on line 34 in tests/Plugin.Core.Tests/SnakeNameTests.cs

See this annotation in the file changed.

@github-actions github-actions / Tests Results

Plugin.Core.Tests.SnakeNameTests ► Can_Convert_To_Snake_Name(sourceValue: "HelloWorld", expectedValue: "helloworld")

Failed test found in:
  tests/Plugin.Core.Tests/TestResults/test-results.trx
Error:
  Assert.Single() Failure: The collection contained 3 items
  Collection: [["result"] = "HelloWorld", ["result-lower"] = "helloworld", ["result-upper"] = "HELLOWORLD"]
Raw output
Assert.Single() Failure: The collection contained 3 items
Collection: [["result"] = "HelloWorld", ["result-lower"] = "helloworld", ["result-upper"] = "HELLOWORLD"]
   at Plugin.Core.Tests.SnakeNameTests.Can_Convert_To_Snake_Name(String sourceValue, String expectedValue) in /home/runner/work/Nox.Cli/Nox.Cli/tests/Plugin.Core.Tests/SnakeNameTests.cs:line 34
--- End of stack trace from previous location ---