Skip to content

Added a MarkupPalette. #235

Added a MarkupPalette.

Added a MarkupPalette. #235

GitHub Actions / Test Results 2020.3.45f1-StandaloneWindows64 completed Oct 18, 2023 in 0s

❌️ Test Results 2020.3.45f1-StandaloneWindows64 - 73/74, failed: 1 - Failed in 16.824s

✅ editmode-results.xml - 29/29 - Passed in 11.768s

❌️ playmode-results.xml - 44/45, failed: 1 - Failed in 5.056s

Details

✅ editmode-results.xml - 29/29 - Passed in 11.768s
  • ✅ Yarn.Unity.Tests.CodeAnalysisTests - 2/2 - Passed in 0.015s
    • CodeAnalysis_CanGenerateSourceCode - Passed in 0.009s
    • CodeAnalysis_GeneratedSourceCode_RegistersExpectedActions - Passed in 0.007s
  • ✅ Yarn.Unity.Tests.DialogueReferenceTests - 3/3 - Passed in 0.053s
    • DialogueReference_CanFindValidNode - Passed in 0.051s
    • DialogueReference_CannotFindInvalidNode - Passed in 0.001s
    • DialogueReference_IsNotValidWhenEmpty - Passed in 0.001s
  • ✅ Yarn.Unity.Tests.YarnImporterTests - 24/24 - Passed in 10.848s
    • YarnEditorUtility_HasValidEditorResources - Passed in 0.186s
    • YarnImporter_CanCreateNewProjectFromScript - Passed in 0.660s
    • YarnImporter_CanCreateNewScript - Passed in 0.193s
    • YarnImporter_CanCreateProjectAndScriptSimultaneously - Passed in 0.294s
    • YarnImporter_OnCreatingScriptNoLineIDs_HasNoImplicitLineIDs - Passed in 0.458s
    • YarnImporter_OnCreatingScriptWithNoLineIDs_HasImplicitLineIDs - Passed in 0.420s
    • YarnImporter_OnNonJSONProjectFormat_CanUpgrade - Passed in 0.491s
    • YarnImporter_OnNonJSONProjectFormat_ProducesUsefulError - Passed in 0.180s
    • YarnImporter_ProgramCacheIsInvalidatedAfterReimport - Passed in 0.535s
    • YarnImporterUtility_CanUpdateLocalizedCSVs_WhenBaseScriptChanges - Passed in 1.116s
    • YarnProjectImporter_OnImport_CreatesLocalizations - Passed in 0.383s
    • YarnProjectImporter_OnInvalidYarnFile_ImportsButDoesNotCompile - Passed in 0.429s
    • YarnProjectImporter_OnLocalizationsConfigured_LocatesAssets - Passed in 0.501s
    • YarnProjectImporter_OnLocalizationsSupplied_GeneratesExpectedLocalizations - Passed in 0.515s
    • YarnProjectImporter_OnNoLocalizationsSupplied_GeneratesExpectedLocalizations - Passed in 0.521s
    • YarnProjectImporter_OnValidYarnFile_GetExpectedStrings - Passed in 0.372s
    • YarnProjectImporter_OnValidYarnFile_ImportsAndCompilesSuccessfully - Passed in 0.353s
    • YarnProjectImporter_OnValidYarnFileWithMetadata_GeneratesLineMetadata - Passed in 0.383s
    • YarnProjectImporter_OnValidYarnFileWithMetadata_GetExpectedLineMetadata - Passed in 0.378s
    • YarnProjectImporter_OnValidYarnFileWithNoLineTags_CannotGetStrings - Passed in 0.342s
    • YarnProjectImporter_OnValidYarnFileWithoutMetadata_GeneratesEmptyLineMetadata - Passed in 0.365s
    • YarnProjectImporter_UpdatesLineMetadata_WhenBaseScriptChanges - Passed in 0.579s
    • YarnProjectImporter_UpdatesLineMetadata_WhenBaseScriptChangesWithoutMetadata - Passed in 0.553s
    • YarnProjectUtility_OnGeneratingLinesFile_CreatesFile - Passed in 0.641s
❌️ playmode-results.xml - 44/45, failed: 1 - Failed in 5.056s
  • ✅ Yarn.Unity.Tests.CommandDispatchTests - 1/1 - Passed in 0.049s
    • CommandDispatch_Passes - Passed in 0.049s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_DispatchesCommands - 13/13 - Passed in 0.488s
    • HandleCommand_DispatchesCommands("testCommandInteger DialogueRunner 1 2","3") - Passed in 0.038s
    • HandleCommand_DispatchesCommands("testCommandString DialogueRunner a b","ab") - Passed in 0.033s
    • HandleCommand_DispatchesCommands("testCommandString DialogueRunner "a b" "c d"","a bc d") - Passed in 0.033s
    • HandleCommand_DispatchesCommands("testCommandGameObject DialogueRunner Sphere","Sphere") - Passed in 0.037s
    • HandleCommand_DispatchesCommands("testCommandComponent DialogueRunner Sphere","Sphere's MeshRenderer") - Passed in 0.034s
    • HandleCommand_DispatchesCommands("testCommandGameObject DialogueRunner DoesNotExist","(null)") - Passed in 0.034s
    • HandleCommand_DispatchesCommands("testCommandComponent DialogueRunner DoesNotExist","(null)") - Passed in 0.035s
    • HandleCommand_DispatchesCommands("testCommandNoParameters DialogueRunner","success") - Passed in 0.038s
    • HandleCommand_DispatchesCommands("testCommandOptionalParams DialogueRunner 1","3") - Passed in 0.052s
    • HandleCommand_DispatchesCommands("testCommandOptionalParams DialogueRunner 1 3","4") - Passed in 0.042s
    • HandleCommand_DispatchesCommands("testCommandDefaultName DialogueRunner","success") - Passed in 0.035s
    • HandleCommand_DispatchesCommands("testStaticCommand","success") - Passed in 0.044s
    • HandleCommand_DispatchesCommands("testExternalAssemblyCommand","success") - Passed in 0.032s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_FailsWhenParameterCountNotCorrect - 2/2 - Passed in 0.069s
    • HandleCommand_FailsWhenParameterCountNotCorrect("testCommandOptionalParams DialogueRunner","requires between 1 and 2 parameters, but 0 were provided") - Passed in 0.037s
    • HandleCommand_FailsWhenParameterCountNotCorrect("testCommandOptionalParams DialogueRunner 1 2 3","requires between 1 and 2 parameters, but 3 were provided") - Passed in 0.032s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_FailsWhenParameterTypesNotValid - 1/1 - Passed in 0.045s
    • HandleCommand_FailsWhenParameterTypesNotValid("testCommandInteger DialogueRunner 1 not_an_integer","Can't convert the given parameter") - Passed in 0.045s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.SplitCommandText_SplitsTextCorrectly - 8/8 - Passed in 0.282s
    • SplitCommandText_SplitsTextCorrectly("one two three four",System.String[]) - Passed in 0.038s
    • SplitCommandText_SplitsTextCorrectly("one "two three" four",System.String[]) - Passed in 0.035s
    • SplitCommandText_SplitsTextCorrectly("one "two three four",System.String[]) - Passed in 0.035s
    • SplitCommandText_SplitsTextCorrectly("one "two \"three" four",System.String[]) - Passed in 0.038s
    • SplitCommandText_SplitsTextCorrectly("one \two three four",System.String[]) - Passed in 0.035s
    • SplitCommandText_SplitsTextCorrectly("one "two \\ three" four",System.String[]) - Passed in 0.033s
    • SplitCommandText_SplitsTextCorrectly("one "two \1 three" four",System.String[]) - Passed in 0.032s
    • SplitCommandText_SplitsTextCorrectly("one two",System.String[]) - Passed in 0.037s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests - 14/14 - Passed in 1.318s
    • AddCommandHandler_RegistersCommands - Passed in 0.115s
    • AddCommandHandler_RegistersCoroutineCommands - Passed in 0.076s
    • DialogueRunner_CanAccessInitialValues - Passed in 0.056s
    • DialogueRunner_CanAccessNodeHeaders - Passed in 0.045s
    • DialogueRunner_CanAccessNodeNames - Passed in 0.046s
    • DialogueRunner_OnDialogueStartAndStop_CallsEvents - Passed in 0.550s
    • DialogueRunner_WhenRestoringInvalidKey_FailsToLoad - Passed in 0.057s
    • DialogueRunner_WhenStateSaved_CanRestoreState - Passed in 0.060s
    • DialogueRunner_WhenStateSaved_CanRestoreState_PlayerPrefs - Passed in 0.050s
    • HandleCommand_DispatchedCommands_StartCoroutines - Passed in 0.063s
    • HandleLine_OnValidYarnFile_SendCorrectLinesToUI - Passed in 0.047s
    • HandleLine_OnViewsArrayContainingNullElement_SendCorrectLinesToUI - Passed in 0.042s
    • SaveAndLoad_BadSave - Passed in 0.047s
    • VariableStorage_OnExternalChanges_ReturnsExpectedValue - Passed in 0.064s
  • ❌️ Yarn.Unity.Tests.VariableStorageTests - 5/6, failed: 1 - Failed in 2.712s
    • TestLoadingAndSettingAllVariables - Passed in 2.245s

    • ❌️ TestLoadingDefaultValues - Failed in 0.153s
      Expected: True
      But was: False

        Dialogue Runner has no LineProvider; creating a TextLineProvider.
      Can't start dialogue from node EmptyNode: the Yarn Project VariableStorageTestProgram does not contain a node named "EmptyNode"
      
      at Yarn.Unity.Tests.VariableStorageTests+<TestLoadingDefaultValues>d__23.MoveNext () [0x0006e] in YarnSpinner/Packages/YarnSpinner/Tests/Runtime/VariableStorageTests/VariableStorageTests.cs:152
      at UnityEngine.TestTools.TestEnumerator+<Execute>d__7.MoveNext () [0x0004e] in YarnSpinner/Library/PackageCache/[email protected]/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:46
      
    • TestSavingAndLoadingFile - Passed in 0.080s

    • TestSavingAndLoadingFile_PlayerPrefs - Passed in 0.097s

    • TestVariableValuesFromYarnScript - Passed in 0.078s

    • VariableStorage_OnUsingValueWithInvalidName_ThrowsError - Passed in 0.058s

Annotations

Check failure on line 152 in YarnSpinner/Packages/YarnSpinner/Tests/Runtime/VariableStorageTests/VariableStorageTests.cs

See this annotation in the file changed.

@github-actions github-actions / Test Results 2020.3.45f1-StandaloneWindows64

Yarn.Unity.Tests.VariableStorageTests.TestLoadingDefaultValues

  Expected: True
  But was:  False
Raw output
Dialogue Runner has no LineProvider; creating a TextLineProvider.
Can't start dialogue from node EmptyNode: the Yarn Project VariableStorageTestProgram does not contain a node named "EmptyNode"

at Yarn.Unity.Tests.VariableStorageTests+<TestLoadingDefaultValues>d__23.MoveNext () [0x0006e] in /github/workspace/YarnSpinner/Packages/YarnSpinner/Tests/Runtime/VariableStorageTests/VariableStorageTests.cs:152
at UnityEngine.TestTools.TestEnumerator+<Execute>d__7.MoveNext () [0x0004e] in /github/workspace/YarnSpinner/Library/PackageCache/[email protected]/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:46