Skip to content

Added a MarkupPalette. #235

Added a MarkupPalette.

Added a MarkupPalette. #235

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

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

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

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

Details

✅ editmode-results.xml - 29/29 - Passed in 10.789s
  • ✅ Yarn.Unity.Tests.CodeAnalysisTests - 2/2 - Passed in 0.013s
    • CodeAnalysis_CanGenerateSourceCode - Passed in 0.007s
    • CodeAnalysis_GeneratedSourceCode_RegistersExpectedActions - Passed in 0.006s
  • ✅ Yarn.Unity.Tests.DialogueReferenceTests - 3/3 - Passed in 0.053s
    • DialogueReference_CanFindValidNode - Passed in 0.046s
    • DialogueReference_CannotFindInvalidNode - Passed in 0.003s
    • DialogueReference_IsNotValidWhenEmpty - Passed in 0.004s
  • ✅ Yarn.Unity.Tests.YarnImporterTests - 24/24 - Passed in 10.297s
    • YarnEditorUtility_HasValidEditorResources - Passed in 0.176s
    • YarnImporter_CanCreateNewProjectFromScript - Passed in 0.567s
    • YarnImporter_CanCreateNewScript - Passed in 0.176s
    • YarnImporter_CanCreateProjectAndScriptSimultaneously - Passed in 0.278s
    • YarnImporter_OnCreatingScriptNoLineIDs_HasNoImplicitLineIDs - Passed in 0.440s
    • YarnImporter_OnCreatingScriptWithNoLineIDs_HasImplicitLineIDs - Passed in 0.410s
    • YarnImporter_OnNonJSONProjectFormat_CanUpgrade - Passed in 0.557s
    • YarnImporter_OnNonJSONProjectFormat_ProducesUsefulError - Passed in 0.180s
    • YarnImporter_ProgramCacheIsInvalidatedAfterReimport - Passed in 0.513s
    • YarnImporterUtility_CanUpdateLocalizedCSVs_WhenBaseScriptChanges - Passed in 1.076s
    • YarnProjectImporter_OnImport_CreatesLocalizations - Passed in 0.349s
    • YarnProjectImporter_OnInvalidYarnFile_ImportsButDoesNotCompile - Passed in 0.379s
    • YarnProjectImporter_OnLocalizationsConfigured_LocatesAssets - Passed in 0.465s
    • YarnProjectImporter_OnLocalizationsSupplied_GeneratesExpectedLocalizations - Passed in 0.488s
    • YarnProjectImporter_OnNoLocalizationsSupplied_GeneratesExpectedLocalizations - Passed in 0.477s
    • YarnProjectImporter_OnValidYarnFile_GetExpectedStrings - Passed in 0.364s
    • YarnProjectImporter_OnValidYarnFile_ImportsAndCompilesSuccessfully - Passed in 0.341s
    • YarnProjectImporter_OnValidYarnFileWithMetadata_GeneratesLineMetadata - Passed in 0.342s
    • YarnProjectImporter_OnValidYarnFileWithMetadata_GetExpectedLineMetadata - Passed in 0.370s
    • YarnProjectImporter_OnValidYarnFileWithNoLineTags_CannotGetStrings - Passed in 0.317s
    • YarnProjectImporter_OnValidYarnFileWithoutMetadata_GeneratesEmptyLineMetadata - Passed in 0.335s
    • YarnProjectImporter_UpdatesLineMetadata_WhenBaseScriptChanges - Passed in 0.543s
    • YarnProjectImporter_UpdatesLineMetadata_WhenBaseScriptChangesWithoutMetadata - Passed in 0.535s
    • YarnProjectUtility_OnGeneratingLinesFile_CreatesFile - Passed in 0.622s
❌️ playmode-results.xml - 44/45, failed: 1 - Failed in 4.330s
  • ✅ Yarn.Unity.Tests.CommandDispatchTests - 1/1 - Passed in 0.044s
    • CommandDispatch_Passes - Passed in 0.044s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_DispatchesCommands - 13/13 - Passed in 0.360s
    • HandleCommand_DispatchesCommands("testCommandInteger DialogueRunner 1 2","3") - Passed in 0.029s
    • HandleCommand_DispatchesCommands("testCommandString DialogueRunner a b","ab") - Passed in 0.028s
    • HandleCommand_DispatchesCommands("testCommandString DialogueRunner "a b" "c d"","a bc d") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testCommandGameObject DialogueRunner Sphere","Sphere") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testCommandComponent DialogueRunner Sphere","Sphere's MeshRenderer") - Passed in 0.028s
    • HandleCommand_DispatchesCommands("testCommandGameObject DialogueRunner DoesNotExist","(null)") - Passed in 0.028s
    • HandleCommand_DispatchesCommands("testCommandComponent DialogueRunner DoesNotExist","(null)") - Passed in 0.028s
    • HandleCommand_DispatchesCommands("testCommandNoParameters DialogueRunner","success") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testCommandOptionalParams DialogueRunner 1","3") - Passed in 0.031s
    • HandleCommand_DispatchesCommands("testCommandOptionalParams DialogueRunner 1 3","4") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testCommandDefaultName DialogueRunner","success") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testStaticCommand","success") - Passed in 0.027s
    • HandleCommand_DispatchesCommands("testExternalAssemblyCommand","success") - Passed in 0.027s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_FailsWhenParameterCountNotCorrect - 2/2 - Passed in 0.055s
    • HandleCommand_FailsWhenParameterCountNotCorrect("testCommandOptionalParams DialogueRunner","requires between 1 and 2 parameters, but 0 were provided") - Passed in 0.027s
    • HandleCommand_FailsWhenParameterCountNotCorrect("testCommandOptionalParams DialogueRunner 1 2 3","requires between 1 and 2 parameters, but 3 were provided") - Passed in 0.027s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.HandleCommand_FailsWhenParameterTypesNotValid - 1/1 - Passed in 0.031s
    • HandleCommand_FailsWhenParameterTypesNotValid("testCommandInteger DialogueRunner 1 not_an_integer","Can't convert the given parameter") - Passed in 0.031s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests.SplitCommandText_SplitsTextCorrectly - 8/8 - Passed in 0.216s
    • SplitCommandText_SplitsTextCorrectly("one two three four",System.String[]) - Passed in 0.027s
    • SplitCommandText_SplitsTextCorrectly("one "two three" four",System.String[]) - Passed in 0.026s
    • SplitCommandText_SplitsTextCorrectly("one "two three four",System.String[]) - Passed in 0.027s
    • SplitCommandText_SplitsTextCorrectly("one "two \"three" four",System.String[]) - Passed in 0.027s
    • SplitCommandText_SplitsTextCorrectly("one \two three four",System.String[]) - Passed in 0.028s
    • SplitCommandText_SplitsTextCorrectly("one "two \\ three" four",System.String[]) - Passed in 0.027s
    • SplitCommandText_SplitsTextCorrectly("one "two \1 three" four",System.String[]) - Passed in 0.027s
    • SplitCommandText_SplitsTextCorrectly("one two",System.String[]) - Passed in 0.026s
  • ✅ Yarn.Unity.Tests.DialogueRunnerTests - 14/14 - Passed in 1.042s
    • AddCommandHandler_RegistersCommands - Passed in 0.088s
    • AddCommandHandler_RegistersCoroutineCommands - Passed in 0.041s
    • DialogueRunner_CanAccessInitialValues - Passed in 0.034s
    • DialogueRunner_CanAccessNodeHeaders - Passed in 0.033s
    • DialogueRunner_CanAccessNodeNames - Passed in 0.031s
    • DialogueRunner_OnDialogueStartAndStop_CallsEvents - Passed in 0.530s
    • DialogueRunner_WhenRestoringInvalidKey_FailsToLoad - Passed in 0.037s
    • DialogueRunner_WhenStateSaved_CanRestoreState - Passed in 0.049s
    • DialogueRunner_WhenStateSaved_CanRestoreState_PlayerPrefs - Passed in 0.038s
    • HandleCommand_DispatchedCommands_StartCoroutines - Passed in 0.030s
    • HandleLine_OnValidYarnFile_SendCorrectLinesToUI - Passed in 0.036s
    • HandleLine_OnViewsArrayContainingNullElement_SendCorrectLinesToUI - Passed in 0.029s
    • SaveAndLoad_BadSave - Passed in 0.029s
    • VariableStorage_OnExternalChanges_ReturnsExpectedValue - Passed in 0.037s
  • ❌️ Yarn.Unity.Tests.VariableStorageTests - 5/6, failed: 1 - Failed in 2.528s
    • TestLoadingAndSettingAllVariables - Passed in 2.232s

    • ❌️ TestLoadingDefaultValues - Failed in 0.072s
      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.071s

    • TestSavingAndLoadingFile_PlayerPrefs - Passed in 0.054s

    • TestVariableValuesFromYarnScript - Passed in 0.062s

    • VariableStorage_OnUsingValueWithInvalidName_ThrowsError - Passed in 0.037s

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 2022.2.1f1-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