diff --git a/package-lock.json b/package-lock.json index 0b68632..a2d3643 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mochawesome-converter", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mochawesome-converter", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "lodash": "^4.17.21", diff --git a/src/nunit-junit.xslt b/src/nunit-junit.xslt index a99d57b..7a11c5b 100644 --- a/src/nunit-junit.xslt +++ b/src/nunit-junit.xslt @@ -24,21 +24,31 @@ - + - - - - - - - - + + + + + + + + + + + + + + + Inconclusive test + + + diff --git a/src/trx-junit.xslt b/src/trx-junit.xslt index fe9f821..e827c38 100644 --- a/src/trx-junit.xslt +++ b/src/trx-junit.xslt @@ -8,10 +8,10 @@ xmlns:vs="http://microsoft.com/schemas/VisualStudio/TeamTest/2010" > - - - - + + + + @@ -93,6 +93,11 @@ + + + + + diff --git a/src/xunit-junit.xslt b/src/xunit-junit.xslt index 9c498b7..592174a 100644 --- a/src/xunit-junit.xslt +++ b/src/xunit-junit.xslt @@ -1,5 +1,6 @@ - + @@ -9,16 +10,24 @@ - + + + + + + + + + + - - - - - + + + + diff --git a/tests/setup.js b/tests/common.js similarity index 73% rename from tests/setup.js rename to tests/common.js index af584c6..e24daaa 100644 --- a/tests/setup.js +++ b/tests/common.js @@ -24,19 +24,29 @@ function createOptions(file, type){ testType: type, reportDir: outDir, reportFilename: getFilename(file), - junit: true + junit: true, + junitReportFilename: `${path.parse(file).name}-junit.xml`, } } /** * @param {TestReportConverterOptions} options * @param {string?} reportFilename + * @param {Boolean?} compareJunit */ -function compare(options, reportFilename){ +function compare(options, reportFilename, compareJunit){ + let createdReport = fs.readFileSync(path.join(outDir, options.reportFilename), 'utf8'); let report = fs.readFileSync(path.join(reportDir, reportFilename ?? options.reportFilename), 'utf8'); expect(createdReport.replaceAll(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/g,'')).toBe(report.replaceAll(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/g,'')); + + if(compareJunit){ + let junitCreatedReport = fs.readFileSync(path.join(outDir, options.junitReportFilename), 'utf8'); + let junitReport = fs.readFileSync(path.join(reportDir, options.junitReportFilename), 'utf8'); + + expect(junitCreatedReport).toBe(junitReport); + } } exports.outDir = outDir; diff --git a/tests/converter.junit.test.js b/tests/converter.junit.test.js index 8949968..8d7be3f 100644 --- a/tests/converter.junit.test.js +++ b/tests/converter.junit.test.js @@ -1,52 +1,37 @@ -const fs = require("fs"); - const test = require('@jest/globals').test; -const beforeAll = require('@jest/globals').beforeAll; -const afterAll = require('@jest/globals').afterAll; const describe = require('@jest/globals').describe; const converter = require('../src/converter'); -const setup = require("./setup"); +const common = require("./common"); describe("JUnit converter tests", () => { - const outDir= './tests/data/tmp'; - const reportDir= './tests/data/result'; - - beforeAll(() => { - setup.removeTempDir(); - }); - - // afterAll(() => { - // setup.removeTempDir(); - // }); - test('convert junit-jenkins.xml', async() => { - let options = setup.createOptions('junit-jenkins.xml', 'junit'); + let options = common.createOptions('junit-jenkins.xml', 'junit'); await converter(options); - setup.compare(options); + common.compare(options); }); test('convert junit-notestsuites.xml', async() => { - let options = setup.createOptions('junit-notestsuites.xml', 'junit'); + let options = common.createOptions('junit-notestsuites.xml', 'junit'); await converter(options); - setup.compare(options, 'junit-jenkins-mochawesome.json'); + common.compare(options, 'junit-jenkins-mochawesome.json'); }); test('convert junit-testsuites-noattributes.xml', async() => { - let options = setup.createOptions('junit-testsuites-noattributes.xml', 'junit'); + let options = common.createOptions('junit-testsuites-noattributes.xml', 'junit'); await converter(options); - setup.compare(options, 'junit-jenkins-mochawesome.json'); + common.compare(options, 'junit-jenkins-mochawesome.json'); }); test('convert junit-mocha-xunit.xml', async() => { - let options = setup.createOptions('junit-mocha-xunit.xml', 'junit') + let options = common.createOptions('junit-mocha-xunit.xml', 'junit') await converter(options); - setup.compare(options); + common.compare(options); }); }); \ No newline at end of file diff --git a/tests/converter.nunit.test.js b/tests/converter.nunit.test.js index 95d3524..a976a65 100644 --- a/tests/converter.nunit.test.js +++ b/tests/converter.nunit.test.js @@ -1,39 +1,27 @@ -const fs = require("fs"); - const test = require('@jest/globals').test; -const beforeAll = require('@jest/globals').beforeAll; -const afterAll = require('@jest/globals').afterAll; const describe = require('@jest/globals').describe; const converter = require('../src/converter'); -const setup = require('./setup'); +const common = require('./common'); describe("NUnit converter tests", () => { - beforeAll(() => { - setup.removeTempDir(); - }); - - // afterAll(() => { - // setup.removeTempDir(); - // }); - test('convert nunit-sample.xml', async() => { - let options = setup.createOptions('nunit-sample.xml', 'nunit') + let options = common.createOptions('nunit-sample.xml', 'nunit') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert nunit-short.xml', async() => { - let options = setup.createOptions('nunit-short.xml', 'nunit') + let options = common.createOptions('nunit-short.xml', 'nunit') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert nunit-mudblazor.xml', async() => { - let options = setup.createOptions('nunit-mudblazor.xml', 'nunit') + let options = common.createOptions('nunit-mudblazor.xml', 'nunit') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); }); \ No newline at end of file diff --git a/tests/converter.trx.test.js b/tests/converter.trx.test.js index ccaa2b8..ea26582 100644 --- a/tests/converter.trx.test.js +++ b/tests/converter.trx.test.js @@ -1,75 +1,63 @@ -const fs = require("fs"); - const test = require('@jest/globals').test; -const beforeAll = require('@jest/globals').beforeAll; -const afterAll = require('@jest/globals').afterAll; const describe = require('@jest/globals').describe; -const setup = require('./setup'); +const common = require('./common'); const converter = require('../src/converter'); describe("TRX converter tests", () => { - beforeAll(() => { - setup.removeTempDir(); - }); - - // afterAll(() => { - // setup.removeTempDir(); - // }); - test('convert trx-mstest-datadriven.trx', async() => { - let options = setup.createOptions('trx-mstest-datadriven.trx', 'trx') + let options = common.createOptions('trx-mstest-datadriven.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-nunit-datadriven.trx', async() => { - let options = setup.createOptions('trx-nunit-datadriven.trx', 'trx') + let options = common.createOptions('trx-nunit-datadriven.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-xunit-datadriven.trx', async() => { - let options = setup.createOptions('trx-xunit-datadriven.trx', 'trx') + let options = common.createOptions('trx-xunit-datadriven.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-mstest-ignore.trx', async() => { - let options = setup.createOptions('trx-mstest-ignore.trx', 'trx') + let options = common.createOptions('trx-mstest-ignore.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-nunit-ignore.trx', async() => { - let options = setup.createOptions('trx-nunit-ignore.trx', 'trx') + let options = common.createOptions('trx-nunit-ignore.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-xunit-ignore.trx', async() => { - let options = setup.createOptions('trx-xunit-ignore.trx', 'trx') + let options = common.createOptions('trx-xunit-ignore.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-mstest.trx', async() => { - let options = setup.createOptions('trx-mstest.trx', 'trx') + let options = common.createOptions('trx-mstest.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-nunit.trx', async() => { - let options = setup.createOptions('trx-nunit.trx', 'trx') + let options = common.createOptions('trx-nunit.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert trx-xunit.trx', async() => { - let options = setup.createOptions('trx-xunit.trx', 'trx') + let options = common.createOptions('trx-xunit.trx', 'trx') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); }); \ No newline at end of file diff --git a/tests/converter.xunit.test.js b/tests/converter.xunit.test.js index bd10f9b..f6d3788 100644 --- a/tests/converter.xunit.test.js +++ b/tests/converter.xunit.test.js @@ -1,33 +1,21 @@ -const fs = require("fs"); - const test = require('@jest/globals').test; -const beforeAll = require('@jest/globals').beforeAll; -const afterAll = require('@jest/globals').afterAll; const describe = require('@jest/globals').describe; const converter = require('../src/converter'); -const setup = require('./setup'); +const common = require('./common'); describe("xUnit.net converter tests", () => { - beforeAll(() => { - setup.removeTempDir(); - }); - - // afterAll(() => { - // setup.removeTempDir(); - // }); - test('convert xunit-sample.xml', async() => { - let options = setup.createOptions('xunit-sample.xml', 'xunit') + let options = common.createOptions('xunit-sample.xml', 'xunit') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); test('convert xunit-qlnet.xml', async() => { - let options = setup.createOptions('xunit-qlnet.xml', 'xunit') + let options = common.createOptions('xunit-qlnet.xml', 'xunit') await converter(options); - setup.compare(options); + common.compare(options, undefined, true); }); }); \ No newline at end of file diff --git a/tests/data/result/nunit-errors-junit.xml b/tests/data/result/nunit-errors-junit.xml new file mode 100644 index 0000000..f67674c --- /dev/null +++ b/tests/data/result/nunit-errors-junit.xml @@ -0,0 +1,1127 @@ + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +Using MANAGED ZLib +Build info : ID = 1902011800, Platform = Android, Branch = develop +Using auto-detected system language: en_US +Language 'English' (en_US) loaded, with total of 1136 entries. +Language changed to 'en_US' +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:03:06 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +Start booting... +Canceling all notifications +Checking for servers... +Trying to fetch servers... +List parsed, server count = 4 +Fetched 4 server(s) +FORGET_USER set, user forgotten, now don't forget to remove the flag! +<E> Starting login +SERVER_OVERRIDE_CUSTOM_IP is set. +Found a custom server : localhost +Found target server : custom -> localhost +Creating a new preference 'saved-server-build', should add this to defaults. (empty value) +Starting username login... +Registering master client events... +[LMC] Connecting with username 'testUser1'... +[LMC] REQ InitialLogin response = Success (1.48 s) +[LMC] Login response is compressed B64 (54546 -> 12952 bytes, 23% of original) +[LMC] Push notifications are NOT active +[LMC] Got FCA context from server... +[LMC] Position is 45, and 1 byte was requested, but length is 45. +[LMC] at ByteBuffer.ReadBool () [0x0003f] in /arena/Assets/Scripts/BaseClasses/Utility/ByteBuffer.cs:475 + at SimpleFudbal.Rules.FieldTypes.IntRuleField.DeserializeFromBinary (ByteBuffer bb) [0x00001] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/FieldTypes/IntRuleField.cs:64 + at SimpleFudbal.Rules.RuleSet.DeserializeFromBinary (ByteBuffer bb) [0x0000d] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/RuleSet.cs:100 + at SimpleFudbal.Rules.GameRules..ctor (ByteBuffer bb, SimpleFudbal.Rules.GameRules parentRules) [0x00009] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/NuGameRules.cs:132 + at GameRulesConverterB64.ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x0004f] in /arena/Assets/Scripts/Network/Lambda/Data/Dummies/GameRulesConverterB64.cs:29 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2127 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.SetPropertyValue (Newtonsoft.Json.Serialization.JsonProperty property, Newtonsoft.Json.JsonConverter propertyConverter, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, Newtonsoft.Json.JsonReader reader, System.Object target) [0x00044] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:1032 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject (System.Object newObject, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonObjectContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.String id) [0x00267] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2411 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0015c] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:497 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0006d] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:293 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:193 + at Newtonsoft.Json.Serialization.JsonSerializerProxy.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00008] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerProxy.cs:246 + at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:802 + at Newtonsoft.Json.JsonSerializer.Deserialize[T] (Newtonsoft.Json.JsonReader reader) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:790 + at ConcreteConverter`1[T].ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x00001] in /arena/Assets/Scripts/Utility/ConcreteConverter.cs:16 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2127 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList (System.Collections.IList list, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonArrayContract contract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, System.String id) [0x0016f] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:1677 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.Object existingValue, System.String id) [0x000dc] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:898 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0007f] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:295 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:193 + at Newtonsoft.Json.JsonSerializer.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00045] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:823 + at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:802 + at Newtonsoft.Json.Linq.JToken.ToObject (System.Type objectType, Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00012] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Linq\JToken.cs:2077 + at Newtonsoft.Json.Linq.JToken.ToObject[T] (Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Linq\JToken.cs:2062 + at ArenaCore.Pwn.Abstraction.Models.Arena.FcaContext..ctor (Newtonsoft.Json.Linq.JObject jsonJObject, Newtonsoft.Json.JsonSerializer serializer) [0x00055] in /arena/Assets/Scripts/Network/Lambda/Data/Interfaces/Arena/FcaContext.cs:119 + at SimpleFudbal.MasterClasses.Lambda.MasterClient.ParseLoginData (Newtonsoft.Json.Linq.JToken data) [0x0011c] in /arena/Assets/Scripts/Network/Lambda/MasterClient.cs:744 +<E> Login failed +Clearing cached servers because of failed login +Login error code = -1, recoverable = False +Non-mobile platform, skipping analytics init. +Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in <ac823e2bb42b41bda67924a45a0173c3>:0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+<ChangeCrestColors>d__0.MoveNext () [0x000e6] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:25 + at UnityEngine.TestTools.TestEnumerator+<Execute>c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +'tutorial.main-gameplay' set to 'true' +'tutorial.team-panel' set to 'true' +'tutorial.formation-panel' set to 'true' + + + SimpleFudbal.MasterClasses.Lambda.MasterClient:LogError(String) (at Assets/Scripts/Network/Lambda/MasterClient.cs:2068) +SimpleFudbal.MasterClasses.Lambda.MasterClient:ParseLoginData(JToken) (at Assets/Scripts/Network/Lambda/MasterClient.cs:858) +SimpleFudbal.MasterClasses.Lambda.Requests.LogInWithUsername:HandleResponse(MasterClient, ServerStatusCode, String, String, JToken, JToken, DateTime, Int32) (at Assets/Scripts/Network/Lambda/MasterRequests/LogInWithUsername.cs:43) +SimpleFudbal.MasterClasses.Lambda.LambdaRequest:PutResponse(MasterClient, ServerRequest, ServerResponse) (at Assets/Scripts/Network/Lambda/LambdaRequest.cs:128) +SimpleFudbal.MasterClasses.Lambda.LambdaRequestManager:responseHandler(ServerRequest, ServerResponse) (at Assets/Scripts/Network/Lambda/LambdaRequestManager.cs:173) +SimpleFudbal.BaseClasses.NetWrapper:updateUnityRequest(ServerRequest) (at Assets/Scripts/Network/NetWrapper.cs:508) +SimpleFudbal.BaseClasses.NetWrapper:UpdateHttpRequests(NetworkHelper) (at Assets/Scripts/Network/NetWrapper.cs:262) +NetworkHelper:Update() (at Assets/Scripts/Utility/NetworkHelper.cs:25) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:37 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:39 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:40 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:41 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:42 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:51 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:44 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:45 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:46 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in <ac823e2bb42b41bda67924a45a0173c3>:0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+<ChangeCrestColors>d__0.MoveNext () [0x0011c] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:30 + at UnityEngine.TestTools.TestEnumerator+<Execute>c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CoroutineTestWorkItem+<PerformWork>c__Iterator0.MoveNext () [0x001b2] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs:67 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<RunChildren>c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<PerformWork>c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<RunChildren>c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<PerformWork>c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<RunChildren>c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+<PerformWork>c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestTools.TestRunner.PlaymodeTestsController+<TestRunnerCorotine>c__Iterator1.MoveNext () [0x00062] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs:69 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 + + + UITestBase+<WaitForInternal>d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106) +UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:48 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + <E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:50 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + SimpleFudbal.MasterClasses.Lambda.MasterClient.get_MyGroup () (at Assets/Scripts/Network/Lambda/MasterClient.cs:2110) +SimpleFudbal.MasterClasses.Lambda.MasterClient.get_MyDivision () (at Assets/Scripts/Network/Lambda/MasterClient.cs:2123) +PlayPanel.PrepareToShow (ManagedPanel+SwitchType stype, System.Collections.Generic.Dictionary`2[TKey,TValue] data) (at Assets/Scripts/FrontEnd/PlayPanel.cs:179) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2277) +UIManager.Update () (at Assets/Scripts/UI-Generic/UIManager.cs:953) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:52 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:54 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:55 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:56 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded +<E> Front-end started +Timestamp: 22.02.2019. 16:04:58 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 +<E> GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! +<E> GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in <ac823e2bb42b41bda67924a45a0173c3>:0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at HappyPath+<GuestLoginAndTutorial>d__0.MoveNext () [0x00146] in /arena/Assets/Scripts/UITest/Paths/HappyPath.cs:30 + at UnityEngine.TestTools.TestEnumerator+<Execute>c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 + + + PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151) +PlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142) +ManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51) +UIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276) +UIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151) +UIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096) +UIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987) +BootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364) +BootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241) + + + + + + + + + Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in <ac823e2bb42b41bda67924a45a0173c3>:0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+<ChangeCrestPattern>d__1.MoveNext () [0x00125] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:84 + at UnityEngine.TestTools.TestEnumerator+<Execute>c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+<ExecuteEnumerable>c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! + + + UITestBase+<WaitForInternal>d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106) +UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) + + + + \ No newline at end of file diff --git a/tests/data/result/nunit-errors-mochawesome.json b/tests/data/result/nunit-errors-mochawesome.json new file mode 100644 index 0000000..9f64521 --- /dev/null +++ b/tests/data/result/nunit-errors-mochawesome.json @@ -0,0 +1,589 @@ +{ + "stats": { + "suites": 7, + "tests": 19, + "passes": 0, + "pending": 0, + "failures": 19, + "testsRegistered": 19, + "passPercent": 0, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false, + "duration": 116775 + }, + "results": [ + { + "uuid": "d4cfdfa0-fdd5-41de-b253-5845f836db30", + "title": "", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "096a990d-dc2e-4f12-912c-f7776e07a00e", + "title": "EditTeamCrest", + "file": "EditTeamCrest", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "ChangeCrestColors", + "fullTitle": "EditTeamCrest.ChangeCrestColors", + "duration": 93965, + "state": "failed", + "speed": "slow", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\nUsing MANAGED ZLib\\nBuild info : ID = 1902011800, Platform = Android, Branch = develop\\nUsing auto-detected system language: en_US\\nLanguage 'English' (en_US) loaded, with total of 1136 entries.\\nLanguage changed to 'en_US'\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:03:06 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nStart booting...\\nCanceling all notifications\\nChecking for servers...\\nTrying to fetch servers...\\nList parsed, server count = 4\\nFetched 4 server(s)\\nFORGET_USER set, user forgotten, now don't forget to remove the flag!\\n Starting login\\nSERVER_OVERRIDE_CUSTOM_IP is set.\\nFound a custom server : localhost\\nFound target server : custom -> localhost\\nCreating a new preference 'saved-server-build', should add this to defaults. (empty value)\\nStarting username login...\\nRegistering master client events...\\n[LMC] Connecting with username 'testUser1'...\\n[LMC] REQ InitialLogin response = Success (1.48 s)\\n[LMC] Login response is compressed B64 (54546 -> 12952 bytes, 23% of original)\\n[LMC] Push notifications are NOT active\\n[LMC] Got FCA context from server...\\n[LMC] Position is 45, and 1 byte was requested, but length is 45.\\n[LMC] at ByteBuffer.ReadBool () [0x0003f] in /arena/Assets/Scripts/BaseClasses/Utility/ByteBuffer.cs:475\\n at SimpleFudbal.Rules.FieldTypes.IntRuleField.DeserializeFromBinary (ByteBuffer bb) [0x00001] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/FieldTypes/IntRuleField.cs:64\\n at SimpleFudbal.Rules.RuleSet.DeserializeFromBinary (ByteBuffer bb) [0x0000d] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/RuleSet.cs:100\\n at SimpleFudbal.Rules.GameRules..ctor (ByteBuffer bb, SimpleFudbal.Rules.GameRules parentRules) [0x00009] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/NuGameRules.cs:132\\n at GameRulesConverterB64.ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x0004f] in /arena/Assets/Scripts/Network/Lambda/Data/Dummies/GameRulesConverterB64.cs:29\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:2127\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.SetPropertyValue (Newtonsoft.Json.Serialization.JsonProperty property, Newtonsoft.Json.JsonConverter propertyConverter, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, Newtonsoft.Json.JsonReader reader, System.Object target) [0x00044] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:1032\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject (System.Object newObject, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonObjectContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.String id) [0x00267] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:2411\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0015c] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:497\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0006d] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:293\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:193\\n at Newtonsoft.Json.Serialization.JsonSerializerProxy.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00008] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerProxy.cs:246\\n at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\JsonSerializer.cs:802\\n at Newtonsoft.Json.JsonSerializer.Deserialize[T] (Newtonsoft.Json.JsonReader reader) [0x00000] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\JsonSerializer.cs:790\\n at ConcreteConverter`1[T].ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x00001] in /arena/Assets/Scripts/Utility/ConcreteConverter.cs:16\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:2127\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList (System.Collections.IList list, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonArrayContract contract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, System.String id) [0x0016f] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:1677\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.Object existingValue, System.String id) [0x000dc] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:898\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0007f] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:295\\n at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Serialization\\\\JsonSerializerInternalReader.cs:193\\n at Newtonsoft.Json.JsonSerializer.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00045] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\JsonSerializer.cs:823\\n at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\JsonSerializer.cs:802\\n at Newtonsoft.Json.Linq.JToken.ToObject (System.Type objectType, Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00012] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Linq\\\\JToken.cs:2077\\n at Newtonsoft.Json.Linq.JToken.ToObject[T] (Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00000] in C:\\\\Project\\\\Github\\\\Json.Net.Unity3D\\\\src\\\\Newtonsoft.Json\\\\Linq\\\\JToken.cs:2062\\n at ArenaCore.Pwn.Abstraction.Models.Arena.FcaContext..ctor (Newtonsoft.Json.Linq.JObject jsonJObject, Newtonsoft.Json.JsonSerializer serializer) [0x00055] in /arena/Assets/Scripts/Network/Lambda/Data/Interfaces/Arena/FcaContext.cs:119\\n at SimpleFudbal.MasterClasses.Lambda.MasterClient.ParseLoginData (Newtonsoft.Json.Linq.JToken data) [0x0011c] in /arena/Assets/Scripts/Network/Lambda/MasterClient.cs:744\\n Login failed\\nClearing cached servers because of failed login\\nLogin error code = -1, recoverable = False\\nNon-mobile platform, skipping analytics init.\\nException: Operation timed out: UITestBase+PanelShown ''\\n at System.Environment.get_StackTrace () [0x00000] in :0\\n at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38\\n at EditTeamCrest+d__0.MoveNext () [0x000e6] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:25\\n at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29\\n at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67\\n at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55\\n at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101\\n at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17\\n'tutorial.main-gameplay' set to 'true'\\n'tutorial.team-panel' set to 'true'\\n'tutorial.formation-panel' set to 'true'\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Error] [LMC] Position is 45, and 1 byte was requested, but length is 45.'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "SimpleFudbal.MasterClasses.Lambda.MasterClient:LogError(String) (at Assets/Scripts/Network/Lambda/MasterClient.cs:2068)\nSimpleFudbal.MasterClasses.Lambda.MasterClient:ParseLoginData(JToken) (at Assets/Scripts/Network/Lambda/MasterClient.cs:858)\nSimpleFudbal.MasterClasses.Lambda.Requests.LogInWithUsername:HandleResponse(MasterClient, ServerStatusCode, String, String, JToken, JToken, DateTime, Int32) (at Assets/Scripts/Network/Lambda/MasterRequests/LogInWithUsername.cs:43)\nSimpleFudbal.MasterClasses.Lambda.LambdaRequest:PutResponse(MasterClient, ServerRequest, ServerResponse) (at Assets/Scripts/Network/Lambda/LambdaRequest.cs:128)\nSimpleFudbal.MasterClasses.Lambda.LambdaRequestManager:responseHandler(ServerRequest, ServerResponse) (at Assets/Scripts/Network/Lambda/LambdaRequestManager.cs:173)\nSimpleFudbal.BaseClasses.NetWrapper:updateUnityRequest(ServerRequest) (at Assets/Scripts/Network/NetWrapper.cs:508)\nSimpleFudbal.BaseClasses.NetWrapper:UpdateHttpRequests(NetworkHelper) (at Assets/Scripts/Network/NetWrapper.cs:262)\nNetworkHelper:Update() (at Assets/Scripts/Utility/NetworkHelper.cs:25)", + "diff": null + }, + "uuid": "72cf7aa4-d4fd-4167-92b5-716bd1f7d4b4", + "parentUUID": "096a990d-dc2e-4f12-912c-f7776e07a00e", + "isHook": false, + "skipped": false + }, + { + "title": "ChangeCrestPattern", + "fullTitle": "EditTeamCrest.ChangeCrestPattern", + "duration": 1348, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:37 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "e059d1cf-bb39-4f93-8457-60e8a15c0676", + "parentUUID": "096a990d-dc2e-4f12-912c-f7776e07a00e", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "72cf7aa4-d4fd-4167-92b5-716bd1f7d4b4", + "e059d1cf-bb39-4f93-8457-60e8a15c0676" + ], + "pending": [], + "skipped": [], + "duration": 95363, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "c0b830eb-c6c3-4940-ab0a-fb3fabd979b3", + "title": "EditTeamFormation", + "file": "EditTeamFormation", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "ChangePlayerName", + "fullTitle": "EditTeamFormation.ChangePlayerName", + "duration": 1291, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:39 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "43ee1c49-76ae-4d6e-b975-05fc5995b1c5", + "parentUUID": "c0b830eb-c6c3-4940-ab0a-fb3fabd979b3", + "isHook": false, + "skipped": false + }, + { + "title": "SwapPlayers", + "fullTitle": "EditTeamFormation.SwapPlayers", + "duration": 1209, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 120000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:40 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "96298dcf-e13d-4bbb-a6a1-73f4d5cc6f41", + "parentUUID": "c0b830eb-c6c3-4940-ab0a-fb3fabd979b3", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "43ee1c49-76ae-4d6e-b975-05fc5995b1c5", + "96298dcf-e13d-4bbb-a6a1-73f4d5cc6f41" + ], + "pending": [], + "skipped": [], + "duration": 2521, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "917dc568-c438-4d21-9e7b-08ea36e5a510", + "title": "EditTeamKit", + "file": "EditTeamKit", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "ChangeKitColors", + "fullTitle": "EditTeamKit.ChangeKitColors", + "duration": 1235, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:41 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "445bf8f2-a857-4bac-a909-41b57a1dddc8", + "parentUUID": "917dc568-c438-4d21-9e7b-08ea36e5a510", + "isHook": false, + "skipped": false + }, + { + "title": "ChangeKitPatterns", + "fullTitle": "EditTeamKit.ChangeKitPatterns", + "duration": 1223, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:42 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "89e5859c-6455-42df-8100-02472d42ea1b", + "parentUUID": "917dc568-c438-4d21-9e7b-08ea36e5a510", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "445bf8f2-a857-4bac-a909-41b57a1dddc8", + "89e5859c-6455-42df-8100-02472d42ea1b" + ], + "pending": [], + "skipped": [], + "duration": 2477, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "ed9c4861-074b-4664-aec2-314502a2002f", + "title": "HappyPath", + "file": "HappyPath", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "GuestLoginAndTutorial", + "fullTitle": "HappyPath.GuestLoginAndTutorial", + "duration": 1235, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 120000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:44 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "f37caf6e-8529-4b2c-9a52-777b5b42b119", + "parentUUID": "ed9c4861-074b-4664-aec2-314502a2002f", + "isHook": false, + "skipped": false + }, + { + "title": "PanelsTour", + "fullTitle": "HappyPath.PanelsTour", + "duration": 1224, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 120000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:45 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "04d40651-6236-4945-a8ee-2f30fc9fa1c8", + "parentUUID": "ed9c4861-074b-4664-aec2-314502a2002f", + "isHook": false, + "skipped": false + }, + { + "title": "RookieCrushersTest", + "fullTitle": "HappyPath.RookieCrushersTest", + "duration": 1241, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 180000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:46 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "cf00d7b2-16f0-463a-ac9f-929f3bd5469d", + "parentUUID": "ed9c4861-074b-4664-aec2-314502a2002f", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "f37caf6e-8529-4b2c-9a52-777b5b42b119", + "04d40651-6236-4945-a8ee-2f30fc9fa1c8", + "cf00d7b2-16f0-463a-ac9f-929f3bd5469d" + ], + "pending": [], + "skipped": [], + "duration": 3727, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "2d28e0c9-a4e9-44c0-8681-a6ff6fb2a5b3", + "title": "PlayPanelUITests", + "file": "PlayPanelUITests", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "GoToMyProfile", + "fullTitle": "PlayPanelUITests.GoToMyProfile", + "duration": 37, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"Exception: Operation timed out: UITestBase+PanelShown ''\\n at System.Environment.get_StackTrace () [0x00000] in :0\\n at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38\\n at EditTeamCrest+d__0.MoveNext () [0x0011c] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:30\\n at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29\\n at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67\\n at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55\\n at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CoroutineTestWorkItem+c__Iterator0.MoveNext () [0x001b2] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs:67\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73\\n at UnityEngine.TestTools.TestRunner.PlaymodeTestsController+c__Iterator1.MoveNext () [0x00062] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs:69\\n at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] Exception: Operation timed out: UITestBase+PanelShown '' at System.Environment.get_StackTrace () [0x00000] in :0 at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 at EditTeamCrest+d__0.MoveNext () [0x0011c] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:30 at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 at UnityEngine.TestRunner.NUnitExtensions.Runner.CoroutineTestWorkItem+c__Iterator0.MoveNext () [0x001b2] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs:67 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 at UnityEngine.TestTools.TestRunner.PlaymodeTestsController+c__Iterator1.MoveNext () [0x00062] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs:69 at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 '. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "UITestBase+d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106)\nUnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17)", + "diff": null + }, + "uuid": "97b62c45-2670-4394-acc8-aa4e96146f28", + "parentUUID": "2d28e0c9-a4e9-44c0-8681-a6ff6fb2a5b3", + "isHook": false, + "skipped": false + }, + { + "title": "GoToOthersProfile", + "fullTitle": "PlayPanelUITests.GoToOthersProfile", + "duration": 1197, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 120000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:48 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "55ce238b-b936-4519-9f96-4099c5eea7fb", + "parentUUID": "2d28e0c9-a4e9-44c0-8681-a6ff6fb2a5b3", + "isHook": false, + "skipped": false + }, + { + "title": "OpenFreePack", + "fullTitle": "PlayPanelUITests.OpenFreePack", + "duration": 2278, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\" GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:50 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "SimpleFudbal.MasterClasses.Lambda.MasterClient.get_MyGroup () (at Assets/Scripts/Network/Lambda/MasterClient.cs:2110)\nSimpleFudbal.MasterClasses.Lambda.MasterClient.get_MyDivision () (at Assets/Scripts/Network/Lambda/MasterClient.cs:2123)\nPlayPanel.PrepareToShow (ManagedPanel+SwitchType stype, System.Collections.Generic.Dictionary`2[TKey,TValue] data) (at Assets/Scripts/FrontEnd/PlayPanel.cs:179)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2277)\nUIManager.Update () (at Assets/Scripts/UI-Generic/UIManager.cs:953)", + "diff": null + }, + "uuid": "58f01da8-f2c1-42f6-b5ae-faae1bb63719", + "parentUUID": "2d28e0c9-a4e9-44c0-8681-a6ff6fb2a5b3", + "isHook": false, + "skipped": false + }, + { + "title": "StartMatchmakingAndCancel", + "fullTitle": "PlayPanelUITests.StartMatchmakingAndCancel", + "duration": 1223, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:52 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "61ed37b8-23b0-4df3-ad0a-3001596d95bd", + "parentUUID": "2d28e0c9-a4e9-44c0-8681-a6ff6fb2a5b3", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "97b62c45-2670-4394-acc8-aa4e96146f28", + "55ce238b-b936-4519-9f96-4099c5eea7fb", + "58f01da8-f2c1-42f6-b5ae-faae1bb63719", + "61ed37b8-23b0-4df3-ad0a-3001596d95bd" + ], + "pending": [], + "skipped": [], + "duration": 6041, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "272aaca6-02d2-41f7-b9da-0602c482563a", + "title": "PlayMatch", + "file": "PlayPanelUITests.PlayMatch", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "PlayMatch(1)", + "fullTitle": "PlayPanelUITests.PlayMatch(1)", + "duration": 1225, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:51 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "fcf966a9-23e7-4b83-96ef-66145227d9e6", + "parentUUID": "272aaca6-02d2-41f7-b9da-0602c482563a", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "fcf966a9-23e7-4b83-96ef-66145227d9e6" + ], + "pending": [], + "skipped": [], + "duration": 1240, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + }, + { + "uuid": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "title": "StoreUITests", + "file": "StoreUITests", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "BuyCrestsFromStore", + "fullTitle": "StoreUITests.BuyCrestsFromStore", + "duration": 1236, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:54 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "1d33843c-1ce8-4747-8e9c-6ce6fb8e17f2", + "parentUUID": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "isHook": false, + "skipped": false + }, + { + "title": "BuyEmblemsFromStore", + "fullTitle": "StoreUITests.BuyEmblemsFromStore", + "duration": 1233, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:55 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "cc30ea6a-3868-41b5-bc79-504a98c044a4", + "parentUUID": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "isHook": false, + "skipped": false + }, + { + "title": "BuyShirtsFromStore", + "fullTitle": "StoreUITests.BuyShirtsFromStore", + "duration": 1620, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:56 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "f0022def-acb3-43b4-849c-1a6e20a8259d", + "parentUUID": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "isHook": false, + "skipped": false + }, + { + "title": "BuyStaminadeFromStore", + "fullTitle": "StoreUITests.BuyStaminadeFromStore", + "duration": 1266, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"The referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\\ntow manager is exists delete the second\\nUsing MANAGED ZLib\\nScene FrontEndScene is loaded\\n Front-end started\\nTimestamp: 22.02.2019. 16:04:58 UTC+0\\nApp version: 0.9.166\\nBuild: 1902011800 / develop / Android\\nBuild time: 01.02.2019. 18:00 UTC+0\\nDevice model: PC\\nScreen resolution: 640 x 480 (0 dpi)\\nScreen safe area: 0, 0 -> 640, 480 (640 x 480)\\nVertical safe ratio: 1\\n GUI switch: login\\nSKIP_SOCIAL override is set, won't use social plugins for login\\nCommand line argument count : 12\\n[0] /opt/Unity/Editor/Unity\\n[1] -accept-apiupdate\\n[2] -projectPath\\n[3] /arena\\n[4] -batchmode\\n[5] -nographics\\n[6] -logfile\\n[7] -runTests\\n[8] -testPlatform\\n[9] playmode\\n[10] -testResults\\n[11] /arena/UnityUiResults.xml\\nThere are no matches on record!\\n GUI switch: play\\nNullReferenceException: Object reference not set to an instance of an object\\nCanceling all notifications\\nFader: loading panel is initally shown\\nException: Operation timed out: UITestBase+PanelShown ''\\n at System.Environment.get_StackTrace () [0x00000] in :0\\n at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38\\n at HappyPath+d__0.MoveNext () [0x00146] in /arena/Assets/Scripts/UITest/Paths/HappyPath.cs:30\\n at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29\\n at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67\\n at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55\\n at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101\\n at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] NullReferenceException: Object reference not set to an instance of an object'. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "PlayPanel.SetupArenas () (at Assets/Scripts/FrontEnd/PlayPanel.cs:151)\nPlayPanel.Initialize (System.Boolean initialLogin) (at Assets/Scripts/FrontEnd/PlayPanel.cs:142)\nManagedPanel.Load (System.Boolean initialLogin) (at Assets/Scripts/UI-Generic/ManagedPanel.cs:51)\nUIManager.ShowNextPanel (System.Boolean instant) (at Assets/Scripts/UI-Generic/UIManager.cs:2276)\nUIManager.SwitchTo (ManagedPanel nextPanel, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2151)\nUIManager.SwitchTo (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous, ManagedPanel+SwitchType switchType) (at Assets/Scripts/UI-Generic/UIManager.cs:2096)\nUIManager.SwitchToPanel (System.String panelName, System.Collections.Generic.Dictionary`2[TKey,TValue] data, System.Boolean force, System.Boolean simultaneous) (at Assets/Scripts/UI-Generic/UIManager.cs:1987)\nBootPanel.ReturnToFrontEnd () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:364)\nBootPanel.Start () (at Assets/Scripts/FrontEnd/Loading/BootPanel.cs:241)", + "diff": null + }, + "uuid": "a089bd80-de96-4f08-9e76-db59c6032f33", + "parentUUID": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "isHook": false, + "skipped": false + }, + { + "title": "BuyStickerFromStore", + "fullTitle": "StoreUITests.BuyStickerFromStore", + "duration": 29, + "state": "failed", + "speed": "fast", + "pass": false, + "fail": true, + "pending": false, + "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: UnityCombinatorial\",\"Timeout: 90000\"]},{\"title\":\"system-out\",\"value\":\"Exception: Operation timed out: UITestBase+PanelShown ''\\n at System.Environment.get_StackTrace () [0x00000] in :0\\n at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38\\n at EditTeamCrest+d__1.MoveNext () [0x00125] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:84\\n at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29\\n at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36\\n at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67\\n at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55\\n at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101\\n at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing!\\nThe referenced script (Unknown) on this Behaviour is missing!\\nThe referenced script on this Behaviour (Game Object 'CrestDisplay') is missing!\"}]", + "code": null, + "err": { + "message": "Unhandled log message: '[Exception] Exception: Operation timed out: UITestBase+PanelShown '' at System.Environment.get_StackTrace () [0x00000] in :0 at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 at EditTeamCrest+d__1.MoveNext () [0x00125] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:84 at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 '. Use UnityEngine.TestTools.LogAssert.Expect", + "estack": "UITestBase+d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106)\nUnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17)", + "diff": null + }, + "uuid": "c817bac3-d82e-46cd-bd61-db49379a97de", + "parentUUID": "8fcdd9d9-cea1-478e-a57a-e21f0bc62642", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [], + "failures": [ + "1d33843c-1ce8-4747-8e9c-6ce6fb8e17f2", + "cc30ea6a-3868-41b5-bc79-504a98c044a4", + "f0022def-acb3-43b4-849c-1a6e20a8259d", + "a089bd80-de96-4f08-9e76-db59c6032f33", + "c817bac3-d82e-46cd-bd61-db49379a97de" + ], + "pending": [], + "skipped": [], + "duration": 5434, + "root": false, + "rootEmpty": false, + "_timeout": 10000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 10000 + } + ] +} \ No newline at end of file diff --git a/tests/data/result/nunit-mudblazor-junit.xml b/tests/data/result/nunit-mudblazor-junit.xml new file mode 100644 index 0000000..433adae --- /dev/null +++ b/tests/data/result/nunit-mudblazor-junit.xml @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/nunit-mudblazor-mochawesome.json b/tests/data/result/nunit-mudblazor-mochawesome.json index 1e8f3a1..a3caae5 100644 --- a/tests/data/result/nunit-mudblazor-mochawesome.json +++ b/tests/data/result/nunit-mudblazor-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "6913692c-50a7-4cc9-a0cf-53a7f3b08f42", + "uuid": "43224ebc-ecfc-44ef-8a63-0de9eb610f12", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "f40a5e3a-db84-4c5c-8626-a871980fa94e", + "uuid": "81939de3-bf06-45d2-a803-53530d258ad7", "title": "BarChartTests", "file": "MudBlazor.UnitTests.Charts.BarChartTests", "beforeHooks": [], @@ -43,8 +43,8 @@ "context": null, "code": null, "err": {}, - "uuid": "60ba92c0-9479-4a31-aa5a-e298aaf71559", - "parentUUID": "f40a5e3a-db84-4c5c-8626-a871980fa94e", + "uuid": "342c3110-4732-4471-bd21-088a5d321724", + "parentUUID": "81939de3-bf06-45d2-a803-53530d258ad7", "isHook": false, "skipped": false }, @@ -60,8 +60,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0f25bb66-1b37-4199-be1d-7f616e696717", - "parentUUID": "f40a5e3a-db84-4c5c-8626-a871980fa94e", + "uuid": "8e66e292-ec43-42f0-9481-2b686d3f00b1", + "parentUUID": "81939de3-bf06-45d2-a803-53530d258ad7", "isHook": false, "skipped": false }, @@ -77,8 +77,8 @@ "context": null, "code": null, "err": {}, - "uuid": "38bbb844-1075-4e63-8bb5-01f77af6fb58", - "parentUUID": "f40a5e3a-db84-4c5c-8626-a871980fa94e", + "uuid": "463993fd-112f-4d2c-a8a3-c8dd8647cf4f", + "parentUUID": "81939de3-bf06-45d2-a803-53530d258ad7", "isHook": false, "skipped": false }, @@ -94,18 +94,18 @@ "context": null, "code": null, "err": {}, - "uuid": "0b630d7e-665f-42f3-8037-cc3bb6cb249e", - "parentUUID": "f40a5e3a-db84-4c5c-8626-a871980fa94e", + "uuid": "9f4ff0e8-5131-4f08-b438-a94ff63b7995", + "parentUUID": "81939de3-bf06-45d2-a803-53530d258ad7", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "60ba92c0-9479-4a31-aa5a-e298aaf71559", - "0f25bb66-1b37-4199-be1d-7f616e696717", - "38bbb844-1075-4e63-8bb5-01f77af6fb58", - "0b630d7e-665f-42f3-8037-cc3bb6cb249e" + "342c3110-4732-4471-bd21-088a5d321724", + "8e66e292-ec43-42f0-9481-2b686d3f00b1", + "463993fd-112f-4d2c-a8a3-c8dd8647cf4f", + "9f4ff0e8-5131-4f08-b438-a94ff63b7995" ], "failures": [], "pending": [], @@ -116,7 +116,7 @@ "_timeout": 10000 }, { - "uuid": "3a63a8ab-7484-447f-98b0-23a6b6ca9cc6", + "uuid": "061b5506-8ac0-4a5b-9925-b3e0345b57ac", "title": "DonutChartTests", "file": "MudBlazor.UnitTests.Charts.DonutChartTests", "beforeHooks": [], @@ -134,8 +134,8 @@ "context": null, "code": null, "err": {}, - "uuid": "1f64299a-5c1e-47b7-a54f-b36a20844fb8", - "parentUUID": "3a63a8ab-7484-447f-98b0-23a6b6ca9cc6", + "uuid": "bc6057af-745b-4db3-b3d8-6f329e99b94f", + "parentUUID": "061b5506-8ac0-4a5b-9925-b3e0345b57ac", "isHook": false, "skipped": false }, @@ -151,16 +151,16 @@ "context": null, "code": null, "err": {}, - "uuid": "24d13e62-582a-4cf6-b4d3-ce24646f3373", - "parentUUID": "3a63a8ab-7484-447f-98b0-23a6b6ca9cc6", + "uuid": "a24908ea-8f65-4b66-9f79-c27956e0c709", + "parentUUID": "061b5506-8ac0-4a5b-9925-b3e0345b57ac", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "1f64299a-5c1e-47b7-a54f-b36a20844fb8", - "24d13e62-582a-4cf6-b4d3-ce24646f3373" + "bc6057af-745b-4db3-b3d8-6f329e99b94f", + "a24908ea-8f65-4b66-9f79-c27956e0c709" ], "failures": [], "pending": [], @@ -171,7 +171,7 @@ "_timeout": 10000 }, { - "uuid": "cd252bf7-636d-45f5-a4d5-eaac9cb1a2a0", + "uuid": "9b642eef-d6df-4a1c-8e03-52166cb8f097", "title": "DonutChartExampleData", "file": "MudBlazor.UnitTests.Charts.DonutChartTests.DonutChartExampleData", "beforeHooks": [], @@ -189,8 +189,8 @@ "context": null, "code": null, "err": {}, - "uuid": "6342be61-5802-408a-a05a-fe4b6662360e", - "parentUUID": "cd252bf7-636d-45f5-a4d5-eaac9cb1a2a0", + "uuid": "6279e12c-367f-4539-b0ec-5b738ad21dc3", + "parentUUID": "9b642eef-d6df-4a1c-8e03-52166cb8f097", "isHook": false, "skipped": false }, @@ -206,16 +206,16 @@ "context": null, "code": null, "err": {}, - "uuid": "1318df2b-3376-4ef0-bce3-07db5b93ba06", - "parentUUID": "cd252bf7-636d-45f5-a4d5-eaac9cb1a2a0", + "uuid": "bd40fae8-7a1d-4af4-b530-506103aa03c9", + "parentUUID": "9b642eef-d6df-4a1c-8e03-52166cb8f097", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "6342be61-5802-408a-a05a-fe4b6662360e", - "1318df2b-3376-4ef0-bce3-07db5b93ba06" + "6279e12c-367f-4539-b0ec-5b738ad21dc3", + "bd40fae8-7a1d-4af4-b530-506103aa03c9" ], "failures": [], "pending": [], @@ -226,7 +226,7 @@ "_timeout": 10000 }, { - "uuid": "1345200f-6245-4cef-80ea-f4f947b1420f", + "uuid": "2c0eef8e-cc96-4193-a23f-10f68ef4cc2c", "title": "DonutCirclePosition", "file": "MudBlazor.UnitTests.Charts.DonutChartTests.DonutCirclePosition", "beforeHooks": [], @@ -244,8 +244,8 @@ "context": null, "code": null, "err": {}, - "uuid": "bec6076a-6d39-4a98-bc49-821e4e143d95", - "parentUUID": "1345200f-6245-4cef-80ea-f4f947b1420f", + "uuid": "87dfe510-d0b0-4efe-9a46-74087bd0e0c8", + "parentUUID": "2c0eef8e-cc96-4193-a23f-10f68ef4cc2c", "isHook": false, "skipped": false }, @@ -261,16 +261,16 @@ "context": null, "code": null, "err": {}, - "uuid": "f8338d6e-4937-48b1-9d74-29affea4c5f8", - "parentUUID": "1345200f-6245-4cef-80ea-f4f947b1420f", + "uuid": "be83338e-a5ac-4fb5-b5ed-4495ad2711ee", + "parentUUID": "2c0eef8e-cc96-4193-a23f-10f68ef4cc2c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bec6076a-6d39-4a98-bc49-821e4e143d95", - "f8338d6e-4937-48b1-9d74-29affea4c5f8" + "87dfe510-d0b0-4efe-9a46-74087bd0e0c8", + "be83338e-a5ac-4fb5-b5ed-4495ad2711ee" ], "failures": [], "pending": [], @@ -281,7 +281,7 @@ "_timeout": 10000 }, { - "uuid": "35a18b5e-924a-4077-a4d0-07fc16afca35", + "uuid": "35a6a86f-06c2-407d-8150-0689c67f974b", "title": "LineChartTests", "file": "MudBlazor.UnitTests.Charts.LineChartTests", "beforeHooks": [], @@ -299,8 +299,8 @@ "context": null, "code": null, "err": {}, - "uuid": "59a9df6d-c395-439b-be1d-456145f0ed14", - "parentUUID": "35a18b5e-924a-4077-a4d0-07fc16afca35", + "uuid": "214a85d1-3296-4186-af59-525786b65767", + "parentUUID": "35a6a86f-06c2-407d-8150-0689c67f974b", "isHook": false, "skipped": false }, @@ -316,16 +316,16 @@ "context": null, "code": null, "err": {}, - "uuid": "d677909a-c81d-4348-b7c0-4cfee7636244", - "parentUUID": "35a18b5e-924a-4077-a4d0-07fc16afca35", + "uuid": "d89ccf65-7746-4ab4-8621-6f953d310f0c", + "parentUUID": "35a6a86f-06c2-407d-8150-0689c67f974b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "59a9df6d-c395-439b-be1d-456145f0ed14", - "d677909a-c81d-4348-b7c0-4cfee7636244" + "214a85d1-3296-4186-af59-525786b65767", + "d89ccf65-7746-4ab4-8621-6f953d310f0c" ], "failures": [], "pending": [], @@ -336,7 +336,7 @@ "_timeout": 10000 }, { - "uuid": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "51b401ae-eb97-410e-9552-e278e7522566", "title": "LineChartExampleData", "file": "MudBlazor.UnitTests.Charts.LineChartTests.LineChartExampleData", "beforeHooks": [], @@ -354,8 +354,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9cac6fcf-aa93-4d85-8858-c39bbd408e47", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "a2042160-a278-4359-967a-986063cf6826", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -371,8 +371,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c95b701e-b4cb-4198-868f-eda9c2e07a1e", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "d3e6972c-2a8d-464f-b418-6597720b9b81", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -388,8 +388,8 @@ "context": null, "code": null, "err": {}, - "uuid": "e7e7029e-4e8b-4548-908c-f432c48f83b8", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "9249b617-9c27-43a6-b8a4-7429cd0e4d83", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -405,8 +405,8 @@ "context": null, "code": null, "err": {}, - "uuid": "972acd7c-f3f8-4b81-9913-b1fe686057ab", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "e90a1cad-6745-49f5-98be-23a2eb1ff585", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -422,8 +422,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0fc63f51-980c-440b-b096-984bce9cfd66", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "526b9acd-b2e5-4821-8077-dc8b2580872c", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -439,8 +439,8 @@ "context": null, "code": null, "err": {}, - "uuid": "612de378-739f-4c48-8261-8c19ace9565f", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "ed594688-5942-4651-8362-eabf6ae0921e", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -456,8 +456,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ab2fc377-4a35-439f-833b-9a0593cb1677", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "88285208-da93-4f88-9351-a3f731d87abd", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false }, @@ -473,22 +473,22 @@ "context": null, "code": null, "err": {}, - "uuid": "659a42ff-8287-4888-abda-3f5f3b0091f7", - "parentUUID": "98ac2185-2cc8-41c4-9d2f-d361ab739592", + "uuid": "7a1ddd19-fa1d-41c6-a913-e63e696104e3", + "parentUUID": "51b401ae-eb97-410e-9552-e278e7522566", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9cac6fcf-aa93-4d85-8858-c39bbd408e47", - "c95b701e-b4cb-4198-868f-eda9c2e07a1e", - "e7e7029e-4e8b-4548-908c-f432c48f83b8", - "972acd7c-f3f8-4b81-9913-b1fe686057ab", - "0fc63f51-980c-440b-b096-984bce9cfd66", - "612de378-739f-4c48-8261-8c19ace9565f", - "ab2fc377-4a35-439f-833b-9a0593cb1677", - "659a42ff-8287-4888-abda-3f5f3b0091f7" + "a2042160-a278-4359-967a-986063cf6826", + "d3e6972c-2a8d-464f-b418-6597720b9b81", + "9249b617-9c27-43a6-b8a4-7429cd0e4d83", + "e90a1cad-6745-49f5-98be-23a2eb1ff585", + "526b9acd-b2e5-4821-8077-dc8b2580872c", + "ed594688-5942-4651-8362-eabf6ae0921e", + "88285208-da93-4f88-9351-a3f731d87abd", + "7a1ddd19-fa1d-41c6-a913-e63e696104e3" ], "failures": [], "pending": [], @@ -499,7 +499,7 @@ "_timeout": 10000 }, { - "uuid": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "title": "LineChartExampleZeroValues", "file": "MudBlazor.UnitTests.Charts.LineChartTests.LineChartExampleZeroValues", "beforeHooks": [], @@ -517,8 +517,8 @@ "context": null, "code": null, "err": {}, - "uuid": "62d02845-b6dd-4ff7-a496-f6e3f6f5455a", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "84b958da-2b64-4f3d-9880-2e50570258f2", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -534,8 +534,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ccf41933-5e9d-44da-a8fd-4bb26c7c94ca", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "0d03e55b-63aa-4234-bfb2-ca74521e4236", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -551,8 +551,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f5d0d45a-50ab-4c76-a7f2-d4864e60f6ff", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "dc6d65ac-8be1-4292-b90a-44409442e5a1", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -568,8 +568,8 @@ "context": null, "code": null, "err": {}, - "uuid": "8f50ffef-98bb-47f9-b432-bc070f2cc54e", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "fde4b6d2-a3ea-471d-bc41-19017298ac7e", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -585,8 +585,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f424bfcc-4395-401b-ba82-9292e49494f3", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "1c40faa2-1858-4eb2-9e73-d7b745b3871c", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -602,8 +602,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f45b3a1d-d587-4d49-96b9-222d266fbccb", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "ae2f98ac-ac7d-4614-a87d-a9a6fef45a73", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -619,8 +619,8 @@ "context": null, "code": null, "err": {}, - "uuid": "20958500-e463-440a-bcd8-f2e5c2df9b38", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "9232d637-2809-4ac2-928b-63ac15007067", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false }, @@ -636,22 +636,22 @@ "context": null, "code": null, "err": {}, - "uuid": "97330427-cba1-45a5-bf8c-103ab4aff38d", - "parentUUID": "c193403a-70ef-47fc-8f3e-27f7f5ed083a", + "uuid": "7a603e81-bd7c-46c1-ba8c-b20a56e4969a", + "parentUUID": "3dd1d7bb-549a-4e45-b041-913fa167bd15", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "62d02845-b6dd-4ff7-a496-f6e3f6f5455a", - "ccf41933-5e9d-44da-a8fd-4bb26c7c94ca", - "f5d0d45a-50ab-4c76-a7f2-d4864e60f6ff", - "8f50ffef-98bb-47f9-b432-bc070f2cc54e", - "f424bfcc-4395-401b-ba82-9292e49494f3", - "f45b3a1d-d587-4d49-96b9-222d266fbccb", - "20958500-e463-440a-bcd8-f2e5c2df9b38", - "97330427-cba1-45a5-bf8c-103ab4aff38d" + "84b958da-2b64-4f3d-9880-2e50570258f2", + "0d03e55b-63aa-4234-bfb2-ca74521e4236", + "dc6d65ac-8be1-4292-b90a-44409442e5a1", + "fde4b6d2-a3ea-471d-bc41-19017298ac7e", + "1c40faa2-1858-4eb2-9e73-d7b745b3871c", + "ae2f98ac-ac7d-4614-a87d-a9a6fef45a73", + "9232d637-2809-4ac2-928b-63ac15007067", + "7a603e81-bd7c-46c1-ba8c-b20a56e4969a" ], "failures": [], "pending": [], @@ -662,7 +662,7 @@ "_timeout": 10000 }, { - "uuid": "9b334b87-1fb2-447d-adc2-d6a8033a779f", + "uuid": "d46a54b4-c532-4c10-b6cc-8bc2c6b8d776", "title": "PieChartTests", "file": "MudBlazor.UnitTests.Charts.PieChartTests", "beforeHooks": [], @@ -680,8 +680,8 @@ "context": null, "code": null, "err": {}, - "uuid": "6b26ada0-82b0-461f-9140-a3b4a3caefa2", - "parentUUID": "9b334b87-1fb2-447d-adc2-d6a8033a779f", + "uuid": "3e1a32d0-1054-44a0-9f3f-d57d3a19d150", + "parentUUID": "d46a54b4-c532-4c10-b6cc-8bc2c6b8d776", "isHook": false, "skipped": false }, @@ -697,16 +697,16 @@ "context": null, "code": null, "err": {}, - "uuid": "de583079-813c-4331-8437-4f08253f8e6f", - "parentUUID": "9b334b87-1fb2-447d-adc2-d6a8033a779f", + "uuid": "6af2cd14-e75e-4698-aabd-02e270434014", + "parentUUID": "d46a54b4-c532-4c10-b6cc-8bc2c6b8d776", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "6b26ada0-82b0-461f-9140-a3b4a3caefa2", - "de583079-813c-4331-8437-4f08253f8e6f" + "3e1a32d0-1054-44a0-9f3f-d57d3a19d150", + "6af2cd14-e75e-4698-aabd-02e270434014" ], "failures": [], "pending": [], @@ -717,7 +717,7 @@ "_timeout": 10000 }, { - "uuid": "aaecbfed-9bda-4788-b08f-ef6a691acd9d", + "uuid": "a7cee905-58bc-4627-814a-f15a45b9607c", "title": "PieChartExampleData", "file": "MudBlazor.UnitTests.Charts.PieChartTests.PieChartExampleData", "beforeHooks": [], @@ -735,8 +735,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3130740c-3f52-4d4e-9ae8-dcf5bde9ed80", - "parentUUID": "aaecbfed-9bda-4788-b08f-ef6a691acd9d", + "uuid": "e7280da3-c421-4f6d-a61d-f6b8a0734382", + "parentUUID": "a7cee905-58bc-4627-814a-f15a45b9607c", "isHook": false, "skipped": false }, @@ -752,16 +752,16 @@ "context": null, "code": null, "err": {}, - "uuid": "60d1883a-2116-4f13-b23c-3218baf03d2a", - "parentUUID": "aaecbfed-9bda-4788-b08f-ef6a691acd9d", + "uuid": "0a1b575f-1c0a-4368-8ed4-5bfbddd5bc50", + "parentUUID": "a7cee905-58bc-4627-814a-f15a45b9607c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3130740c-3f52-4d4e-9ae8-dcf5bde9ed80", - "60d1883a-2116-4f13-b23c-3218baf03d2a" + "e7280da3-c421-4f6d-a61d-f6b8a0734382", + "0a1b575f-1c0a-4368-8ed4-5bfbddd5bc50" ], "failures": [], "pending": [], @@ -772,7 +772,7 @@ "_timeout": 10000 }, { - "uuid": "cff3bcfb-b085-4c45-8ad3-df39e059a3af", + "uuid": "ddf4c623-a533-410e-b7f4-896ee1bb8bdc", "title": "StackedBarChartTests", "file": "MudBlazor.UnitTests.Charts.StackedBarChartTests", "beforeHooks": [], @@ -790,8 +790,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ce340a89-f3e9-46bd-bf2e-3b16dc2d08b7", - "parentUUID": "cff3bcfb-b085-4c45-8ad3-df39e059a3af", + "uuid": "c016bf8d-afdf-4e59-beda-573eafb22879", + "parentUUID": "ddf4c623-a533-410e-b7f4-896ee1bb8bdc", "isHook": false, "skipped": false }, @@ -807,8 +807,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d0ce1cb9-1af5-4c4e-ae4b-8934ba141646", - "parentUUID": "cff3bcfb-b085-4c45-8ad3-df39e059a3af", + "uuid": "d6fcf5ae-904c-427d-a0eb-a6361ccbb3ee", + "parentUUID": "ddf4c623-a533-410e-b7f4-896ee1bb8bdc", "isHook": false, "skipped": false }, @@ -824,17 +824,17 @@ "context": null, "code": null, "err": {}, - "uuid": "9053607e-8be4-46d1-b57f-a70172a52452", - "parentUUID": "cff3bcfb-b085-4c45-8ad3-df39e059a3af", + "uuid": "878570b3-745b-48a8-b2dd-8ce0d1adb78a", + "parentUUID": "ddf4c623-a533-410e-b7f4-896ee1bb8bdc", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ce340a89-f3e9-46bd-bf2e-3b16dc2d08b7", - "d0ce1cb9-1af5-4c4e-ae4b-8934ba141646", - "9053607e-8be4-46d1-b57f-a70172a52452" + "c016bf8d-afdf-4e59-beda-573eafb22879", + "d6fcf5ae-904c-427d-a0eb-a6361ccbb3ee", + "878570b3-745b-48a8-b2dd-8ce0d1adb78a" ], "failures": [], "pending": [], @@ -845,7 +845,7 @@ "_timeout": 10000 }, { - "uuid": "eaba7a31-3b81-436f-a71a-5a07df1ec007", + "uuid": "36ee2f4c-1a70-4c96-8ea5-7f8511148bc0", "title": "TimeSeriesChartTests", "file": "MudBlazor.UnitTests.Charts.TimeSeriesChartTests", "beforeHooks": [], @@ -863,8 +863,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9fb5cd7c-1c2e-4fe8-823f-07185896b8d0", - "parentUUID": "eaba7a31-3b81-436f-a71a-5a07df1ec007", + "uuid": "cf364150-2705-47bf-9431-b4a737a88c1b", + "parentUUID": "36ee2f4c-1a70-4c96-8ea5-7f8511148bc0", "isHook": false, "skipped": false }, @@ -880,16 +880,16 @@ "context": null, "code": null, "err": {}, - "uuid": "b3fccce5-28e9-4014-8641-a356eacb8c97", - "parentUUID": "eaba7a31-3b81-436f-a71a-5a07df1ec007", + "uuid": "1a6223fa-5088-4c54-b5bb-a9a95f193d0d", + "parentUUID": "36ee2f4c-1a70-4c96-8ea5-7f8511148bc0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9fb5cd7c-1c2e-4fe8-823f-07185896b8d0", - "b3fccce5-28e9-4014-8641-a356eacb8c97" + "cf364150-2705-47bf-9431-b4a737a88c1b", + "1a6223fa-5088-4c54-b5bb-a9a95f193d0d" ], "failures": [], "pending": [], @@ -900,7 +900,7 @@ "_timeout": 10000 }, { - "uuid": "fd622e98-45b7-45bd-a063-ac849bfc9f25", + "uuid": "30de0985-0985-42f9-aecd-98c59ae5b3f9", "title": "AlertTests", "file": "MudBlazor.UnitTests.Components.AlertTests", "beforeHooks": [], @@ -918,8 +918,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5b01c61f-bde8-43ea-b8da-daf2b8c17bf7", - "parentUUID": "fd622e98-45b7-45bd-a063-ac849bfc9f25", + "uuid": "3af9e8ad-729e-4a30-9063-bf44899cefde", + "parentUUID": "30de0985-0985-42f9-aecd-98c59ae5b3f9", "isHook": false, "skipped": false }, @@ -935,8 +935,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3d457b0b-ef65-400a-abbf-7016b6f01f88", - "parentUUID": "fd622e98-45b7-45bd-a063-ac849bfc9f25", + "uuid": "63b599d0-44a5-40ad-b988-b144e828ec7b", + "parentUUID": "30de0985-0985-42f9-aecd-98c59ae5b3f9", "isHook": false, "skipped": false }, @@ -952,17 +952,17 @@ "context": null, "code": null, "err": {}, - "uuid": "c3d7f47e-5c4c-4564-8cf5-60cb83695fb1", - "parentUUID": "fd622e98-45b7-45bd-a063-ac849bfc9f25", + "uuid": "80f89529-6b15-499a-84a0-d44a7f78fbbb", + "parentUUID": "30de0985-0985-42f9-aecd-98c59ae5b3f9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "5b01c61f-bde8-43ea-b8da-daf2b8c17bf7", - "3d457b0b-ef65-400a-abbf-7016b6f01f88", - "c3d7f47e-5c4c-4564-8cf5-60cb83695fb1" + "3af9e8ad-729e-4a30-9063-bf44899cefde", + "63b599d0-44a5-40ad-b988-b144e828ec7b", + "80f89529-6b15-499a-84a0-d44a7f78fbbb" ], "failures": [], "pending": [], @@ -973,7 +973,7 @@ "_timeout": 10000 }, { - "uuid": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "649a1099-01c2-441b-9d00-57a992780e3e", "title": "AppBarTests", "file": "MudBlazor.UnitTests.Components.AppBarTests", "beforeHooks": [], @@ -991,8 +991,8 @@ "context": null, "code": null, "err": {}, - "uuid": "bd874060-14c2-4ee9-bc11-80152dd4cf38", - "parentUUID": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "b1f90952-7487-421f-9d86-6774b6dc07de", + "parentUUID": "649a1099-01c2-441b-9d00-57a992780e3e", "isHook": false, "skipped": false }, @@ -1008,8 +1008,8 @@ "context": null, "code": null, "err": {}, - "uuid": "513c6175-b91c-4380-af40-ed441fece37b", - "parentUUID": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "c0b84b17-5713-4d0c-a34c-4f7c5157850c", + "parentUUID": "649a1099-01c2-441b-9d00-57a992780e3e", "isHook": false, "skipped": false }, @@ -1025,8 +1025,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a4566ef3-df45-4f71-9525-7dec3b6ef731", - "parentUUID": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "2007f505-e6b1-4d52-9aa9-bd62d71db38e", + "parentUUID": "649a1099-01c2-441b-9d00-57a992780e3e", "isHook": false, "skipped": false }, @@ -1042,8 +1042,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9f99d6c9-297b-4dd1-8e8e-c5b15ee405d9", - "parentUUID": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "35f83313-cac9-4723-9e79-8147357c755c", + "parentUUID": "649a1099-01c2-441b-9d00-57a992780e3e", "isHook": false, "skipped": false }, @@ -1059,19 +1059,19 @@ "context": null, "code": null, "err": {}, - "uuid": "d6f021be-9cc1-47c7-921e-d036ed026332", - "parentUUID": "c90a4b34-997d-44fb-ace1-b6b7090f7abe", + "uuid": "48f8992a-81df-4718-abb1-08ef7c84d445", + "parentUUID": "649a1099-01c2-441b-9d00-57a992780e3e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bd874060-14c2-4ee9-bc11-80152dd4cf38", - "513c6175-b91c-4380-af40-ed441fece37b", - "a4566ef3-df45-4f71-9525-7dec3b6ef731", - "9f99d6c9-297b-4dd1-8e8e-c5b15ee405d9", - "d6f021be-9cc1-47c7-921e-d036ed026332" + "b1f90952-7487-421f-9d86-6774b6dc07de", + "c0b84b17-5713-4d0c-a34c-4f7c5157850c", + "2007f505-e6b1-4d52-9aa9-bd62d71db38e", + "35f83313-cac9-4723-9e79-8147357c755c", + "48f8992a-81df-4718-abb1-08ef7c84d445" ], "failures": [], "pending": [], @@ -1082,7 +1082,7 @@ "_timeout": 10000 }, { - "uuid": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "title": "CarouselTests", "file": "MudBlazor.UnitTests.Components.CarouselTests", "beforeHooks": [], @@ -1100,8 +1100,8 @@ "context": null, "code": null, "err": {}, - "uuid": "7cd7e2af-e04f-42b0-aba5-9e2598f2eb2f", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "588cf956-84aa-4f08-ac46-8d8967374ad7", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false }, @@ -1117,8 +1117,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9039f755-5bfc-4955-8e98-39b34d09da64", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "5b9b2055-e25e-42eb-9912-76e32a78f7fc", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false }, @@ -1134,8 +1134,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c0eafab8-b0c9-4349-9e54-67f3d396534d", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "1d4551fc-bd1b-40ee-8681-f7fddf794db6", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false }, @@ -1151,8 +1151,8 @@ "context": null, "code": null, "err": {}, - "uuid": "291d55fd-a1be-410b-a08d-4bfb614054ca", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "a3daf095-d2f1-4355-9ec3-cb8d2b682979", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false }, @@ -1168,8 +1168,8 @@ "context": null, "code": null, "err": {}, - "uuid": "07efd50b-796b-4ea8-9775-d3ee3c4e3bb2", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "bfcda9f7-4fff-4030-a66c-5a612b90b684", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false }, @@ -1185,20 +1185,20 @@ "context": null, "code": null, "err": {}, - "uuid": "a284c512-cb00-4868-970f-1dd034ec92fb", - "parentUUID": "76c62b02-661f-4aa5-997c-91d0ccc48d1b", + "uuid": "517cbd9a-2eeb-4e42-993b-eff0e2a2163f", + "parentUUID": "3571f826-1bb8-40d7-aefa-1a1345b825cd", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "7cd7e2af-e04f-42b0-aba5-9e2598f2eb2f", - "9039f755-5bfc-4955-8e98-39b34d09da64", - "c0eafab8-b0c9-4349-9e54-67f3d396534d", - "291d55fd-a1be-410b-a08d-4bfb614054ca", - "07efd50b-796b-4ea8-9775-d3ee3c4e3bb2", - "a284c512-cb00-4868-970f-1dd034ec92fb" + "588cf956-84aa-4f08-ac46-8d8967374ad7", + "5b9b2055-e25e-42eb-9912-76e32a78f7fc", + "1d4551fc-bd1b-40ee-8681-f7fddf794db6", + "a3daf095-d2f1-4355-9ec3-cb8d2b682979", + "bfcda9f7-4fff-4030-a66c-5a612b90b684", + "517cbd9a-2eeb-4e42-993b-eff0e2a2163f" ], "failures": [], "pending": [], @@ -1209,7 +1209,7 @@ "_timeout": 10000 }, { - "uuid": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "77389856-e870-46fc-ac07-df08b23601da", "title": "ChartTests", "file": "MudBlazor.UnitTests.Components.ChartTests", "beforeHooks": [], @@ -1227,8 +1227,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d78ebf79-d833-40e5-8acb-ffa89f400fa5", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "438af7dd-a67f-40bb-a165-161f9d6e0d9c", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1244,8 +1244,8 @@ "context": null, "code": null, "err": {}, - "uuid": "af0d837d-ce84-46a7-baa5-20d8409dcb5b", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "a1c56587-90c5-4bac-a0f2-8fe80ad182eb", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1261,8 +1261,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3d4530cc-f948-4fd6-b6e8-a23b11730483", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "eb2ab81e-0391-488b-b7d2-9498948dfb99", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1278,8 +1278,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d87a312d-92b9-485f-a0c2-2473913fbeed", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "7e4411f3-8527-4ac5-a75e-93b0104218ef", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1295,8 +1295,8 @@ "context": null, "code": null, "err": {}, - "uuid": "94aae5ea-1903-4c93-96c3-dd647d3d62db", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "be27045b-9c99-489d-8ef2-164c40fff7b5", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1312,8 +1312,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Timeout: 5000\",\"UseCancellation: True\"]}]", "code": null, "err": {}, - "uuid": "65511e59-8860-453e-8e42-c6d756ce9f62", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "dfb259ce-86e5-403e-8b27-97d383d3d178", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1329,8 +1329,8 @@ "context": null, "code": null, "err": {}, - "uuid": "7ba4d8a2-d45c-4df3-a220-66b27188b08a", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "7a35696a-3831-4153-8500-391050ed6966", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false }, @@ -1346,22 +1346,22 @@ "context": null, "code": null, "err": {}, - "uuid": "687e2429-f73c-466e-9a94-d18c5e448a22", - "parentUUID": "148447af-08f5-4714-a330-c51b5e5b1a01", + "uuid": "211a8545-7b3b-4cb1-b77a-4f7a830dfbfc", + "parentUUID": "77389856-e870-46fc-ac07-df08b23601da", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d78ebf79-d833-40e5-8acb-ffa89f400fa5", - "af0d837d-ce84-46a7-baa5-20d8409dcb5b", - "3d4530cc-f948-4fd6-b6e8-a23b11730483", - "d87a312d-92b9-485f-a0c2-2473913fbeed", - "94aae5ea-1903-4c93-96c3-dd647d3d62db", - "65511e59-8860-453e-8e42-c6d756ce9f62", - "7ba4d8a2-d45c-4df3-a220-66b27188b08a", - "687e2429-f73c-466e-9a94-d18c5e448a22" + "438af7dd-a67f-40bb-a165-161f9d6e0d9c", + "a1c56587-90c5-4bac-a0f2-8fe80ad182eb", + "eb2ab81e-0391-488b-b7d2-9498948dfb99", + "7e4411f3-8527-4ac5-a75e-93b0104218ef", + "be27045b-9c99-489d-8ef2-164c40fff7b5", + "dfb259ce-86e5-403e-8b27-97d383d3d178", + "7a35696a-3831-4153-8500-391050ed6966", + "211a8545-7b3b-4cb1-b77a-4f7a830dfbfc" ], "failures": [], "pending": [], @@ -1372,7 +1372,7 @@ "_timeout": 10000 }, { - "uuid": "4a800a5d-489b-4441-97db-52504a14170a", + "uuid": "b47ae783-3618-4f57-8981-769619c7696f", "title": "ChartCustomGraphics", "file": "MudBlazor.UnitTests.Components.ChartTests.ChartCustomGraphics", "beforeHooks": [], @@ -1390,8 +1390,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d2cfa1dd-3bbf-45b1-9cae-8971431af269", - "parentUUID": "4a800a5d-489b-4441-97db-52504a14170a", + "uuid": "3dee59a2-1c5f-4249-8650-56932823cfd3", + "parentUUID": "b47ae783-3618-4f57-8981-769619c7696f", "isHook": false, "skipped": false }, @@ -1407,8 +1407,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4d1e4176-cf3e-40af-aa61-dbd06bab8079", - "parentUUID": "4a800a5d-489b-4441-97db-52504a14170a", + "uuid": "3a6bed1e-b23c-4544-a461-53d74305a34a", + "parentUUID": "b47ae783-3618-4f57-8981-769619c7696f", "isHook": false, "skipped": false }, @@ -1424,8 +1424,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9b268947-5d55-4368-bdce-d070e33153a4", - "parentUUID": "4a800a5d-489b-4441-97db-52504a14170a", + "uuid": "b475dbc8-f151-476b-af0e-809e14749035", + "parentUUID": "b47ae783-3618-4f57-8981-769619c7696f", "isHook": false, "skipped": false }, @@ -1441,18 +1441,18 @@ "context": null, "code": null, "err": {}, - "uuid": "37f942d8-2450-42f8-8e2f-b8e0ad12d41f", - "parentUUID": "4a800a5d-489b-4441-97db-52504a14170a", + "uuid": "17594f10-8ae8-4c79-9a56-e2c04846242d", + "parentUUID": "b47ae783-3618-4f57-8981-769619c7696f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d2cfa1dd-3bbf-45b1-9cae-8971431af269", - "4d1e4176-cf3e-40af-aa61-dbd06bab8079", - "9b268947-5d55-4368-bdce-d070e33153a4", - "37f942d8-2450-42f8-8e2f-b8e0ad12d41f" + "3dee59a2-1c5f-4249-8650-56932823cfd3", + "3a6bed1e-b23c-4544-a461-53d74305a34a", + "b475dbc8-f151-476b-af0e-809e14749035", + "17594f10-8ae8-4c79-9a56-e2c04846242d" ], "failures": [], "pending": [], @@ -1463,7 +1463,7 @@ "_timeout": 10000 }, { - "uuid": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "2de7d960-a9a1-4486-a521-1b0724db759f", "title": "ToggleGroupTests", "file": "MudBlazor.UnitTests.Components.ToggleGroupTests", "beforeHooks": [], @@ -1481,8 +1481,8 @@ "context": null, "code": null, "err": {}, - "uuid": "949dae38-3e0f-4398-a5cc-e7584771b45f", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "43ae5ca6-049e-4b1f-86e4-b367f0013d69", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1498,8 +1498,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Description: Ensures the checkmark is a direct descendant of the button label, is using the right name, and correctly contains a custom class definition\"]}]", "code": null, "err": {}, - "uuid": "173316e0-2027-451b-89f6-c225b5bb635e", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "7eb4805b-d786-4a1d-922d-3dc3b4e2ff36", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1515,8 +1515,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9df9867c-a227-4818-8635-ca554ea1a26c", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "66d43d25-4be8-4b59-9bea-64cddd3b1c1a", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1532,8 +1532,8 @@ "context": null, "code": null, "err": {}, - "uuid": "6408024e-b2a9-4d7d-b736-01f8dff6475b", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "7c83d3c6-cfff-4d4f-b7a4-dbe2319bef12", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1549,8 +1549,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d5ddfba9-2dc4-47c4-a001-044f9e2c6cb5", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "006be7fe-6108-44f5-b907-188e2e5975b5", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1566,8 +1566,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4f210981-d9e5-4fda-9a54-98632aecc21a", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "3f51a784-9065-4c96-a7e3-b26a0abdec88", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1583,8 +1583,8 @@ "context": null, "code": null, "err": {}, - "uuid": "15ba4163-6b43-4509-a234-bd80847b0486", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "27d86211-f6e2-4374-9c77-df30eaf0dd76", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1600,8 +1600,8 @@ "context": null, "code": null, "err": {}, - "uuid": "563745b3-cf91-4941-9120-567dab3317c0", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "bc584346-7b97-4856-aec6-25cfb59fe2fd", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1617,8 +1617,8 @@ "context": null, "code": null, "err": {}, - "uuid": "567515b4-ad3c-455f-a60f-cdc6b1e1c4be", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "dcc13f62-07a8-4f40-9296-2189b3e68faf", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false }, @@ -1634,24 +1634,24 @@ "context": null, "code": null, "err": {}, - "uuid": "50e3fa5a-dead-43b5-9efa-174f7740178a", - "parentUUID": "ff660fae-ee6d-4e4a-a4dc-4bdc28659702", + "uuid": "416a150c-102d-4862-9cc8-4b0aa4dc61d5", + "parentUUID": "2de7d960-a9a1-4486-a521-1b0724db759f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "949dae38-3e0f-4398-a5cc-e7584771b45f", - "173316e0-2027-451b-89f6-c225b5bb635e", - "9df9867c-a227-4818-8635-ca554ea1a26c", - "6408024e-b2a9-4d7d-b736-01f8dff6475b", - "d5ddfba9-2dc4-47c4-a001-044f9e2c6cb5", - "4f210981-d9e5-4fda-9a54-98632aecc21a", - "15ba4163-6b43-4509-a234-bd80847b0486", - "563745b3-cf91-4941-9120-567dab3317c0", - "567515b4-ad3c-455f-a60f-cdc6b1e1c4be", - "50e3fa5a-dead-43b5-9efa-174f7740178a" + "43ae5ca6-049e-4b1f-86e4-b367f0013d69", + "7eb4805b-d786-4a1d-922d-3dc3b4e2ff36", + "66d43d25-4be8-4b59-9bea-64cddd3b1c1a", + "7c83d3c6-cfff-4d4f-b7a4-dbe2319bef12", + "006be7fe-6108-44f5-b907-188e2e5975b5", + "3f51a784-9065-4c96-a7e3-b26a0abdec88", + "27d86211-f6e2-4374-9c77-df30eaf0dd76", + "bc584346-7b97-4856-aec6-25cfb59fe2fd", + "dcc13f62-07a8-4f40-9296-2189b3e68faf", + "416a150c-102d-4862-9cc8-4b0aa4dc61d5" ], "failures": [], "pending": [], @@ -1662,7 +1662,7 @@ "_timeout": 10000 }, { - "uuid": "117408cc-85ff-4f85-a382-89095bb54455", + "uuid": "890fc207-8c47-4448-b279-719e881b286d", "title": "ToggleGroup_SizeClasses_Test", "file": "MudBlazor.UnitTests.Components.ToggleGroupTests.ToggleGroup_SizeClasses_Test", "beforeHooks": [], @@ -1680,8 +1680,8 @@ "context": null, "code": null, "err": {}, - "uuid": "e8e25fb4-3b4e-46f3-82ae-0e7b1f9fa841", - "parentUUID": "117408cc-85ff-4f85-a382-89095bb54455", + "uuid": "35895d09-9fda-4cdf-8c42-2b50f4ff5b98", + "parentUUID": "890fc207-8c47-4448-b279-719e881b286d", "isHook": false, "skipped": false }, @@ -1697,8 +1697,8 @@ "context": null, "code": null, "err": {}, - "uuid": "35a366b4-94cf-4e83-af7e-b6e7fced15c5", - "parentUUID": "117408cc-85ff-4f85-a382-89095bb54455", + "uuid": "3c7bdfde-7c0e-4ee0-84c6-cb8898d9c706", + "parentUUID": "890fc207-8c47-4448-b279-719e881b286d", "isHook": false, "skipped": false }, @@ -1714,17 +1714,17 @@ "context": null, "code": null, "err": {}, - "uuid": "eefa8817-45a9-42af-a887-bb7077e909d4", - "parentUUID": "117408cc-85ff-4f85-a382-89095bb54455", + "uuid": "3166ac42-193b-44a8-85e2-6fbe6b0d6f9f", + "parentUUID": "890fc207-8c47-4448-b279-719e881b286d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e8e25fb4-3b4e-46f3-82ae-0e7b1f9fa841", - "35a366b4-94cf-4e83-af7e-b6e7fced15c5", - "eefa8817-45a9-42af-a887-bb7077e909d4" + "35895d09-9fda-4cdf-8c42-2b50f4ff5b98", + "3c7bdfde-7c0e-4ee0-84c6-cb8898d9c706", + "3166ac42-193b-44a8-85e2-6fbe6b0d6f9f" ], "failures": [], "pending": [], @@ -1735,7 +1735,7 @@ "_timeout": 10000 }, { - "uuid": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "title": "ToggleIconButtonTest", "file": "MudBlazor.UnitTests.Components.ToggleIconButtonTest", "beforeHooks": [], @@ -1753,8 +1753,8 @@ "context": null, "code": null, "err": {}, - "uuid": "fab01da5-0c47-4303-b0da-e924f67f2144", - "parentUUID": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "dbe009c3-bf89-44ab-8355-7034646f67e0", + "parentUUID": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "isHook": false, "skipped": false }, @@ -1770,8 +1770,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4ae44f82-eb15-422d-a790-747d4cdc7e4e", - "parentUUID": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "efe8c413-7342-4e4e-94ca-df53eeea7d7d", + "parentUUID": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "isHook": false, "skipped": false }, @@ -1787,8 +1787,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5c4cac57-8467-4295-8d1d-aefebcf92dd5", - "parentUUID": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "aa97997a-b9d3-45f0-ad35-bcaffb5d2856", + "parentUUID": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "isHook": false, "skipped": false }, @@ -1804,8 +1804,8 @@ "context": null, "code": null, "err": {}, - "uuid": "100888e0-c009-4c64-8e6c-bd52876d7036", - "parentUUID": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "8d4b8042-abe8-4f44-a6d7-da779982ac2c", + "parentUUID": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "isHook": false, "skipped": false }, @@ -1821,19 +1821,19 @@ "context": null, "code": null, "err": {}, - "uuid": "bc7f9351-6500-4a61-9a22-65c27d721e1d", - "parentUUID": "ee1e6952-5efc-4e42-9e1c-82987b9ee20a", + "uuid": "b096124e-e2fb-4858-bd84-cea53d646274", + "parentUUID": "7f127d8e-8041-4bf2-a0f7-5bcf6391ebe6", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "fab01da5-0c47-4303-b0da-e924f67f2144", - "4ae44f82-eb15-422d-a790-747d4cdc7e4e", - "5c4cac57-8467-4295-8d1d-aefebcf92dd5", - "100888e0-c009-4c64-8e6c-bd52876d7036", - "bc7f9351-6500-4a61-9a22-65c27d721e1d" + "dbe009c3-bf89-44ab-8355-7034646f67e0", + "efe8c413-7342-4e4e-94ca-df53eeea7d7d", + "aa97997a-b9d3-45f0-ad35-bcaffb5d2856", + "8d4b8042-abe8-4f44-a6d7-da779982ac2c", + "b096124e-e2fb-4858-bd84-cea53d646274" ], "failures": [], "pending": [], @@ -1844,7 +1844,7 @@ "_timeout": 10000 }, { - "uuid": "9ea69091-6b77-4c6d-ad04-6c92b5d39741", + "uuid": "86b1c251-4389-487f-abda-c23ff6392a77", "title": "GetColor_ShouldReturnCorrectValue", "file": "MudBlazor.UnitTests.Components.ToggleIconButtonTest.GetColor_ShouldReturnCorrectValue", "beforeHooks": [], @@ -1862,8 +1862,8 @@ "context": null, "code": null, "err": {}, - "uuid": "32781850-8d69-45c6-9fb0-75e7afbf9623", - "parentUUID": "9ea69091-6b77-4c6d-ad04-6c92b5d39741", + "uuid": "a43f705d-2793-4a62-bc35-890d226feabb", + "parentUUID": "86b1c251-4389-487f-abda-c23ff6392a77", "isHook": false, "skipped": false }, @@ -1879,16 +1879,16 @@ "context": null, "code": null, "err": {}, - "uuid": "b7b02e7a-4b0d-459e-94a1-f9407a07e0fd", - "parentUUID": "9ea69091-6b77-4c6d-ad04-6c92b5d39741", + "uuid": "96758818-0630-453c-b0e0-bbc1f5fa337b", + "parentUUID": "86b1c251-4389-487f-abda-c23ff6392a77", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "32781850-8d69-45c6-9fb0-75e7afbf9623", - "b7b02e7a-4b0d-459e-94a1-f9407a07e0fd" + "a43f705d-2793-4a62-bc35-890d226feabb", + "96758818-0630-453c-b0e0-bbc1f5fa337b" ], "failures": [], "pending": [], @@ -1899,7 +1899,7 @@ "_timeout": 10000 }, { - "uuid": "be725678-2abc-45b0-acc6-5e97a8fff07d", + "uuid": "6e773fd9-0a17-4bd5-b23a-323135a3dfdf", "title": "GetIcon_ShouldReturnCorrectValue", "file": "MudBlazor.UnitTests.Components.ToggleIconButtonTest.GetIcon_ShouldReturnCorrectValue", "beforeHooks": [], @@ -1917,8 +1917,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c616f9fc-655c-4578-b643-58c5c47f7c37", - "parentUUID": "be725678-2abc-45b0-acc6-5e97a8fff07d", + "uuid": "8934f6fb-0fdc-4ffc-8f90-f7d5b0dfb96d", + "parentUUID": "6e773fd9-0a17-4bd5-b23a-323135a3dfdf", "isHook": false, "skipped": false }, @@ -1934,16 +1934,16 @@ "context": null, "code": null, "err": {}, - "uuid": "4ea96ae2-e3ba-4578-a843-1ff953f388ac", - "parentUUID": "be725678-2abc-45b0-acc6-5e97a8fff07d", + "uuid": "3b811857-3d00-41c0-b1d8-c4a6450b908e", + "parentUUID": "6e773fd9-0a17-4bd5-b23a-323135a3dfdf", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c616f9fc-655c-4578-b643-58c5c47f7c37", - "4ea96ae2-e3ba-4578-a843-1ff953f388ac" + "8934f6fb-0fdc-4ffc-8f90-f7d5b0dfb96d", + "3b811857-3d00-41c0-b1d8-c4a6450b908e" ], "failures": [], "pending": [], @@ -1954,7 +1954,7 @@ "_timeout": 10000 }, { - "uuid": "9e9def1f-3a9a-4e61-8737-b64602b509ea", + "uuid": "e3db68f5-1458-46ef-a88f-99ba84055048", "title": "GetSize_ShouldReturnCorrectValue", "file": "MudBlazor.UnitTests.Components.ToggleIconButtonTest.GetSize_ShouldReturnCorrectValue", "beforeHooks": [], @@ -1972,8 +1972,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a26652ba-8fbb-4e55-bc6c-92becada1c85", - "parentUUID": "9e9def1f-3a9a-4e61-8737-b64602b509ea", + "uuid": "471e93e7-6450-4c70-869a-1e896c8d672d", + "parentUUID": "e3db68f5-1458-46ef-a88f-99ba84055048", "isHook": false, "skipped": false }, @@ -1989,16 +1989,16 @@ "context": null, "code": null, "err": {}, - "uuid": "93a73c4d-302a-458c-bcd8-c4ef4f77ff4c", - "parentUUID": "9e9def1f-3a9a-4e61-8737-b64602b509ea", + "uuid": "e9f0e506-c191-4ca4-a170-c076ef4ac9a6", + "parentUUID": "e3db68f5-1458-46ef-a88f-99ba84055048", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a26652ba-8fbb-4e55-bc6c-92becada1c85", - "93a73c4d-302a-458c-bcd8-c4ef4f77ff4c" + "471e93e7-6450-4c70-869a-1e896c8d672d", + "e9f0e506-c191-4ca4-a170-c076ef4ac9a6" ], "failures": [], "pending": [], @@ -2009,7 +2009,7 @@ "_timeout": 10000 }, { - "uuid": "86c23e18-d3a5-43c9-a1fc-a3ab4ea937bd", + "uuid": "328e1f10-8b1e-4b6a-b368-fadc4b7b4d28", "title": "GetVariant_ShouldReturnCorrectValue", "file": "MudBlazor.UnitTests.Components.ToggleIconButtonTest.GetVariant_ShouldReturnCorrectValue", "beforeHooks": [], @@ -2027,8 +2027,8 @@ "context": null, "code": null, "err": {}, - "uuid": "034329b5-9d25-4e54-95d6-00c98dee4e02", - "parentUUID": "86c23e18-d3a5-43c9-a1fc-a3ab4ea937bd", + "uuid": "a7c07c66-0c4d-457b-93e1-532afac35a29", + "parentUUID": "328e1f10-8b1e-4b6a-b368-fadc4b7b4d28", "isHook": false, "skipped": false }, @@ -2044,16 +2044,16 @@ "context": null, "code": null, "err": {}, - "uuid": "bb78101b-b111-4301-99dd-43aa3b11b2e9", - "parentUUID": "86c23e18-d3a5-43c9-a1fc-a3ab4ea937bd", + "uuid": "c1e42285-bd09-4609-a67c-9bafc53963b7", + "parentUUID": "328e1f10-8b1e-4b6a-b368-fadc4b7b4d28", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "034329b5-9d25-4e54-95d6-00c98dee4e02", - "bb78101b-b111-4301-99dd-43aa3b11b2e9" + "a7c07c66-0c4d-457b-93e1-532afac35a29", + "c1e42285-bd09-4609-a67c-9bafc53963b7" ], "failures": [], "pending": [], @@ -2064,7 +2064,7 @@ "_timeout": 10000 }, { - "uuid": "56d45dbf-dead-4aae-ac2a-449955f834fb", + "uuid": "20973a3d-e6f0-490b-aa75-55cbb9c5a011", "title": "ToolBarTests", "file": "MudBlazor.UnitTests.Components.ToolBarTests", "beforeHooks": [], @@ -2082,8 +2082,8 @@ "context": null, "code": null, "err": {}, - "uuid": "33eaf53c-81ab-4fc8-af08-203604dfa5da", - "parentUUID": "56d45dbf-dead-4aae-ac2a-449955f834fb", + "uuid": "e8ec072e-ce28-416f-bcc5-30e387771226", + "parentUUID": "20973a3d-e6f0-490b-aa75-55cbb9c5a011", "isHook": false, "skipped": false }, @@ -2099,16 +2099,16 @@ "context": null, "code": null, "err": {}, - "uuid": "bb5966b7-0ae3-47f4-bb1e-bf6c9998b642", - "parentUUID": "56d45dbf-dead-4aae-ac2a-449955f834fb", + "uuid": "78b61e91-ed49-4313-8ab1-f67884478efa", + "parentUUID": "20973a3d-e6f0-490b-aa75-55cbb9c5a011", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "33eaf53c-81ab-4fc8-af08-203604dfa5da", - "bb5966b7-0ae3-47f4-bb1e-bf6c9998b642" + "e8ec072e-ce28-416f-bcc5-30e387771226", + "78b61e91-ed49-4313-8ab1-f67884478efa" ], "failures": [], "pending": [], @@ -2119,7 +2119,7 @@ "_timeout": 10000 }, { - "uuid": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "7f27d238-3806-4e44-bc80-2c678941b32a", "title": "ToolTipTests", "file": "MudBlazor.UnitTests.Components.ToolTipTests", "beforeHooks": [], @@ -2137,8 +2137,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f286dcad-4dc3-4ea5-a3b9-1b20218ad029", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "0b15387d-3d1e-4c3e-bce0-83658342c430", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2154,8 +2154,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ab907d26-b2d0-44bf-be0b-d8339ef86b24", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "a3ad578e-e9bd-4112-a857-23768536d3b0", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2171,8 +2171,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c29f5241-78ec-4bb6-be7c-c7876ccbc45e", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "a44cca20-b852-4b79-b513-26f56d8858b0", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2188,8 +2188,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0b49b6d0-bca0-41b7-9d85-4307485afec1", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "dc3638a3-d76d-4248-a029-42c1561ca1c4", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2205,8 +2205,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c2207093-0fd2-4b81-bc06-4150c0cf2a3f", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "96ec910b-0535-48f9-b62d-d724f7b0a559", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2222,8 +2222,8 @@ "context": null, "code": null, "err": {}, - "uuid": "b58bf168-56fd-49a8-99ab-7a92ba67a452", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "f39adf9d-d4ce-47b2-9839-f2b38d7c0f3c", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2239,8 +2239,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4a2781bf-ef81-4b57-9d6d-1613aa28bc34", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "20e148e0-7c64-4a0c-a15f-84208e3e901a", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2256,8 +2256,8 @@ "context": null, "code": null, "err": {}, - "uuid": "7bca880c-17ee-4844-9490-b79bc15609ce", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "e8ab8e2b-30e3-419e-8fba-49c8c2afb9cf", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false }, @@ -2273,23 +2273,23 @@ "context": null, "code": null, "err": {}, - "uuid": "1b909f5d-dfc0-4e11-8dc7-e2f6f6f76ec7", - "parentUUID": "1aa8234b-9fc6-4f63-b265-5f065b52b5d2", + "uuid": "f20fa1cd-80db-4fb0-b20c-d646e047b423", + "parentUUID": "7f27d238-3806-4e44-bc80-2c678941b32a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f286dcad-4dc3-4ea5-a3b9-1b20218ad029", - "ab907d26-b2d0-44bf-be0b-d8339ef86b24", - "c29f5241-78ec-4bb6-be7c-c7876ccbc45e", - "0b49b6d0-bca0-41b7-9d85-4307485afec1", - "c2207093-0fd2-4b81-bc06-4150c0cf2a3f", - "b58bf168-56fd-49a8-99ab-7a92ba67a452", - "4a2781bf-ef81-4b57-9d6d-1613aa28bc34", - "7bca880c-17ee-4844-9490-b79bc15609ce", - "1b909f5d-dfc0-4e11-8dc7-e2f6f6f76ec7" + "0b15387d-3d1e-4c3e-bce0-83658342c430", + "a3ad578e-e9bd-4112-a857-23768536d3b0", + "a44cca20-b852-4b79-b513-26f56d8858b0", + "dc3638a3-d76d-4248-a029-42c1561ca1c4", + "96ec910b-0535-48f9-b62d-d724f7b0a559", + "f39adf9d-d4ce-47b2-9839-f2b38d7c0f3c", + "20e148e0-7c64-4a0c-a15f-84208e3e901a", + "e8ab8e2b-30e3-419e-8fba-49c8c2afb9cf", + "f20fa1cd-80db-4fb0-b20c-d646e047b423" ], "failures": [], "pending": [], @@ -2300,7 +2300,7 @@ "_timeout": 10000 }, { - "uuid": "0c79fd11-1942-445f-a306-80ec2dbf8b20", + "uuid": "04a88314-d313-4224-9605-f31c06d6659f", "title": "ContainerClass_PropertyRelations", "file": "MudBlazor.UnitTests.Components.ToolTipTests.ContainerClass_PropertyRelations", "beforeHooks": [], @@ -2318,8 +2318,8 @@ "context": null, "code": null, "err": {}, - "uuid": "2fa57638-3508-4056-a190-34fef69f86b1", - "parentUUID": "0c79fd11-1942-445f-a306-80ec2dbf8b20", + "uuid": "692a956e-afcc-4ff5-a9ec-0a71bda3378f", + "parentUUID": "04a88314-d313-4224-9605-f31c06d6659f", "isHook": false, "skipped": false }, @@ -2335,16 +2335,16 @@ "context": null, "code": null, "err": {}, - "uuid": "d8077b55-634f-42eb-a101-8a23264401f3", - "parentUUID": "0c79fd11-1942-445f-a306-80ec2dbf8b20", + "uuid": "eba3aa2f-bab3-40ff-a258-cc2f29eaaeb1", + "parentUUID": "04a88314-d313-4224-9605-f31c06d6659f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2fa57638-3508-4056-a190-34fef69f86b1", - "d8077b55-634f-42eb-a101-8a23264401f3" + "692a956e-afcc-4ff5-a9ec-0a71bda3378f", + "eba3aa2f-bab3-40ff-a258-cc2f29eaaeb1" ], "failures": [], "pending": [], @@ -2355,7 +2355,7 @@ "_timeout": 10000 }, { - "uuid": "c4e8ff83-df21-4d02-a37e-90c508d18b82", + "uuid": "9119f1ac-dcea-41ff-900a-51f832c8c592", "title": "PopoverClass_PropertyArrow", "file": "MudBlazor.UnitTests.Components.ToolTipTests.PopoverClass_PropertyArrow", "beforeHooks": [], @@ -2373,8 +2373,8 @@ "context": null, "code": null, "err": {}, - "uuid": "8e4dcda9-905d-4350-be7b-38358ebc86ba", - "parentUUID": "c4e8ff83-df21-4d02-a37e-90c508d18b82", + "uuid": "85edc6f6-8217-4a85-8826-00ea3ac11e41", + "parentUUID": "9119f1ac-dcea-41ff-900a-51f832c8c592", "isHook": false, "skipped": false }, @@ -2390,16 +2390,16 @@ "context": null, "code": null, "err": {}, - "uuid": "7c4112cd-cf4d-4929-a06a-7f545285d88f", - "parentUUID": "c4e8ff83-df21-4d02-a37e-90c508d18b82", + "uuid": "19e7fa66-52a8-4856-b401-4693a8406b88", + "parentUUID": "9119f1ac-dcea-41ff-900a-51f832c8c592", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8e4dcda9-905d-4350-be7b-38358ebc86ba", - "7c4112cd-cf4d-4929-a06a-7f545285d88f" + "85edc6f6-8217-4a85-8826-00ea3ac11e41", + "19e7fa66-52a8-4856-b401-4693a8406b88" ], "failures": [], "pending": [], @@ -2410,7 +2410,7 @@ "_timeout": 10000 }, { - "uuid": "42d3272a-97fe-44b5-9be6-08a86e2b7cd0", + "uuid": "fbaf73ca-7adc-429f-9c5d-f08ce26648b1", "title": "PopoverClass_PropertyColor", "file": "MudBlazor.UnitTests.Components.ToolTipTests.PopoverClass_PropertyColor", "beforeHooks": [], @@ -2428,8 +2428,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a19bbab2-664c-4fd3-92ff-4e4db06f0ad4", - "parentUUID": "42d3272a-97fe-44b5-9be6-08a86e2b7cd0", + "uuid": "17dba2af-bd01-4070-9612-61085cf0e744", + "parentUUID": "fbaf73ca-7adc-429f-9c5d-f08ce26648b1", "isHook": false, "skipped": false }, @@ -2445,8 +2445,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ec9555bb-56de-4fce-aa19-50e3f6adc46f", - "parentUUID": "42d3272a-97fe-44b5-9be6-08a86e2b7cd0", + "uuid": "16fbe626-1e93-4fe1-98c6-81726076660d", + "parentUUID": "fbaf73ca-7adc-429f-9c5d-f08ce26648b1", "isHook": false, "skipped": false }, @@ -2462,8 +2462,8 @@ "context": null, "code": null, "err": {}, - "uuid": "94129181-e3d3-49a5-9a75-757a33cb1335", - "parentUUID": "42d3272a-97fe-44b5-9be6-08a86e2b7cd0", + "uuid": "659e649e-25b9-400b-a42d-fe6fa3323608", + "parentUUID": "fbaf73ca-7adc-429f-9c5d-f08ce26648b1", "isHook": false, "skipped": false }, @@ -2479,18 +2479,18 @@ "context": null, "code": null, "err": {}, - "uuid": "4b8a0361-64bc-4b7e-acef-59da180bc041", - "parentUUID": "42d3272a-97fe-44b5-9be6-08a86e2b7cd0", + "uuid": "4543a9f8-d718-4a83-a504-a2490eb22ff0", + "parentUUID": "fbaf73ca-7adc-429f-9c5d-f08ce26648b1", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a19bbab2-664c-4fd3-92ff-4e4db06f0ad4", - "ec9555bb-56de-4fce-aa19-50e3f6adc46f", - "94129181-e3d3-49a5-9a75-757a33cb1335", - "4b8a0361-64bc-4b7e-acef-59da180bc041" + "17dba2af-bd01-4070-9612-61085cf0e744", + "16fbe626-1e93-4fe1-98c6-81726076660d", + "659e649e-25b9-400b-a42d-fe6fa3323608", + "4543a9f8-d718-4a83-a504-a2490eb22ff0" ], "failures": [], "pending": [], @@ -2501,7 +2501,7 @@ "_timeout": 10000 }, { - "uuid": "36a4f810-11ee-40c7-88b1-771d9124fbe5", + "uuid": "1275037c-85df-4b8c-a652-24cebc34fc94", "title": "PopoverClass_PropertyColorAndArrow", "file": "MudBlazor.UnitTests.Components.ToolTipTests.PopoverClass_PropertyColorAndArrow", "beforeHooks": [], @@ -2519,8 +2519,8 @@ "context": null, "code": null, "err": {}, - "uuid": "2d056009-4014-49ff-920a-bc9b2979cd8c", - "parentUUID": "36a4f810-11ee-40c7-88b1-771d9124fbe5", + "uuid": "726a5bee-f906-4c79-8f20-ca9772333db7", + "parentUUID": "1275037c-85df-4b8c-a652-24cebc34fc94", "isHook": false, "skipped": false }, @@ -2536,8 +2536,8 @@ "context": null, "code": null, "err": {}, - "uuid": "92aee0e2-87e2-45dd-a3c3-285dbb56a849", - "parentUUID": "36a4f810-11ee-40c7-88b1-771d9124fbe5", + "uuid": "8f17adf8-c7b8-41a2-9ba4-3c1903f6e01c", + "parentUUID": "1275037c-85df-4b8c-a652-24cebc34fc94", "isHook": false, "skipped": false }, @@ -2553,8 +2553,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5e0d7fda-187b-4125-bbe5-22de239f8151", - "parentUUID": "36a4f810-11ee-40c7-88b1-771d9124fbe5", + "uuid": "3e3729bc-249a-42d5-9168-7c4ceacc8d6d", + "parentUUID": "1275037c-85df-4b8c-a652-24cebc34fc94", "isHook": false, "skipped": false }, @@ -2570,18 +2570,18 @@ "context": null, "code": null, "err": {}, - "uuid": "8659fea0-d4dd-42d5-9998-d332385ec76e", - "parentUUID": "36a4f810-11ee-40c7-88b1-771d9124fbe5", + "uuid": "c6cf1de8-d39b-4e27-b1df-4c4f7417e979", + "parentUUID": "1275037c-85df-4b8c-a652-24cebc34fc94", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "2d056009-4014-49ff-920a-bc9b2979cd8c", - "92aee0e2-87e2-45dd-a3c3-285dbb56a849", - "5e0d7fda-187b-4125-bbe5-22de239f8151", - "8659fea0-d4dd-42d5-9998-d332385ec76e" + "726a5bee-f906-4c79-8f20-ca9772333db7", + "8f17adf8-c7b8-41a2-9ba4-3c1903f6e01c", + "3e3729bc-249a-42d5-9168-7c4ceacc8d6d", + "c6cf1de8-d39b-4e27-b1df-4c4f7417e979" ], "failures": [], "pending": [], @@ -2592,7 +2592,7 @@ "_timeout": 10000 }, { - "uuid": "c14c755f-6166-4592-871a-987f9ffb9950", + "uuid": "5bd4279e-9893-4fdd-a768-dbd4a441890a", "title": "RenderContent", "file": "MudBlazor.UnitTests.Components.ToolTipTests.RenderContent", "beforeHooks": [], @@ -2610,8 +2610,8 @@ "context": null, "code": null, "err": {}, - "uuid": "082ed729-c21f-47d1-b13d-6e1b2bdb132b", - "parentUUID": "c14c755f-6166-4592-871a-987f9ffb9950", + "uuid": "684f5a80-c6f3-4bcf-ab2c-a2eec55b6dc3", + "parentUUID": "5bd4279e-9893-4fdd-a768-dbd4a441890a", "isHook": false, "skipped": false }, @@ -2627,16 +2627,16 @@ "context": null, "code": null, "err": {}, - "uuid": "c8432ac9-1cdd-400a-8b84-f138489905d1", - "parentUUID": "c14c755f-6166-4592-871a-987f9ffb9950", + "uuid": "7dd1d23b-59b2-404a-b151-58ce78e8ff70", + "parentUUID": "5bd4279e-9893-4fdd-a768-dbd4a441890a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "082ed729-c21f-47d1-b13d-6e1b2bdb132b", - "c8432ac9-1cdd-400a-8b84-f138489905d1" + "684f5a80-c6f3-4bcf-ab2c-a2eec55b6dc3", + "7dd1d23b-59b2-404a-b151-58ce78e8ff70" ], "failures": [], "pending": [], @@ -2647,7 +2647,7 @@ "_timeout": 10000 }, { - "uuid": "7242a50f-e49a-4cbe-a19e-e2fc505c7cda", + "uuid": "d23547d1-4955-4b68-9147-3d3217fdae3b", "title": "RenderTooltipFragment", "file": "MudBlazor.UnitTests.Components.ToolTipTests.RenderTooltipFragment", "beforeHooks": [], @@ -2665,8 +2665,8 @@ "context": null, "code": null, "err": {}, - "uuid": "cc1c0340-86c3-467e-926b-a8dc0a794999", - "parentUUID": "7242a50f-e49a-4cbe-a19e-e2fc505c7cda", + "uuid": "1e01e98d-7e73-43d6-9484-b9a9a99df885", + "parentUUID": "d23547d1-4955-4b68-9147-3d3217fdae3b", "isHook": false, "skipped": false }, @@ -2682,16 +2682,16 @@ "context": null, "code": null, "err": {}, - "uuid": "62dfd4ac-093c-4099-b599-a88f06446a25", - "parentUUID": "7242a50f-e49a-4cbe-a19e-e2fc505c7cda", + "uuid": "428ac099-8b0b-47db-9088-2d10940a9fbf", + "parentUUID": "d23547d1-4955-4b68-9147-3d3217fdae3b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "cc1c0340-86c3-467e-926b-a8dc0a794999", - "62dfd4ac-093c-4099-b599-a88f06446a25" + "1e01e98d-7e73-43d6-9484-b9a9a99df885", + "428ac099-8b0b-47db-9088-2d10940a9fbf" ], "failures": [], "pending": [], @@ -2702,7 +2702,7 @@ "_timeout": 10000 }, { - "uuid": "5aec91ca-5170-490d-86a0-74f37fb03be2", + "uuid": "83b2140f-cc22-44fc-8a24-45ecb8479d4e", "title": "Visible_ByDefault", "file": "MudBlazor.UnitTests.Components.ToolTipTests.Visible_ByDefault", "beforeHooks": [], @@ -2720,8 +2720,8 @@ "context": null, "code": null, "err": {}, - "uuid": "41f66a54-8af2-4308-af99-ddd64407e1c1", - "parentUUID": "5aec91ca-5170-490d-86a0-74f37fb03be2", + "uuid": "ba0189ae-ab96-4b26-9f37-4e76fc5bab3b", + "parentUUID": "83b2140f-cc22-44fc-8a24-45ecb8479d4e", "isHook": false, "skipped": false }, @@ -2737,16 +2737,16 @@ "context": null, "code": null, "err": {}, - "uuid": "17919d1e-2fe1-4eb3-85aa-1adf7249f7ed", - "parentUUID": "5aec91ca-5170-490d-86a0-74f37fb03be2", + "uuid": "93e36715-4688-4b30-8e67-7ba2851e453d", + "parentUUID": "83b2140f-cc22-44fc-8a24-45ecb8479d4e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "41f66a54-8af2-4308-af99-ddd64407e1c1", - "17919d1e-2fe1-4eb3-85aa-1adf7249f7ed" + "ba0189ae-ab96-4b26-9f37-4e76fc5bab3b", + "93e36715-4688-4b30-8e67-7ba2851e453d" ], "failures": [], "pending": [], @@ -2757,7 +2757,7 @@ "_timeout": 10000 }, { - "uuid": "5bd26ba7-c91c-42ae-9605-ef44b461254f", + "uuid": "5b5882bf-2376-4bd5-b2b1-7c6c17aaa2d5", "title": "VirtualizeTests", "file": "MudBlazor.UnitTests.Components.VirtualizeTests", "beforeHooks": [], @@ -2775,15 +2775,15 @@ "context": null, "code": null, "err": {}, - "uuid": "53b27e64-835b-493f-95ff-4e450cde4545", - "parentUUID": "5bd26ba7-c91c-42ae-9605-ef44b461254f", + "uuid": "ea4f8fd0-fc47-41a6-aca1-10228e1de9a7", + "parentUUID": "5b5882bf-2376-4bd5-b2b1-7c6c17aaa2d5", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "53b27e64-835b-493f-95ff-4e450cde4545" + "ea4f8fd0-fc47-41a6-aca1-10228e1de9a7" ], "failures": [], "pending": [], @@ -2794,7 +2794,7 @@ "_timeout": 10000 }, { - "uuid": "9e5410cf-03ad-4e0b-8521-118815740b9c", + "uuid": "562ff06d-6b8f-4b24-aae4-98edaecb365d", "title": "ResizeOptionsExtensionsTests", "file": "MudBlazor.UnitTests.ResizeOptionsExtensionsTests", "beforeHooks": [], @@ -2812,15 +2812,15 @@ "context": null, "code": null, "err": {}, - "uuid": "e9a06bf3-8fa5-4014-8133-2981ae9b8c69", - "parentUUID": "9e5410cf-03ad-4e0b-8521-118815740b9c", + "uuid": "d5290070-6cc4-450c-b62e-f656722bb0ab", + "parentUUID": "562ff06d-6b8f-4b24-aae4-98edaecb365d", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e9a06bf3-8fa5-4014-8133-2981ae9b8c69" + "d5290070-6cc4-450c-b62e-f656722bb0ab" ], "failures": [], "pending": [], diff --git a/tests/data/result/nunit-sample-junit.xml b/tests/data/result/nunit-sample-junit.xml new file mode 100644 index 0000000..b6e6a8c --- /dev/null +++ b/tests/data/result/nunit-sample-junit.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + at NUnit.Framework.Assert.Fail(String message, Object[] args) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 142 + at NUnit.Framework.Assert.Fail(String message) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 152 + at NUnit.Tests.Assemblies.MockTestFixture.FailingTest() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 121 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + at NUnit.Tests.Assemblies.MockTestFixture.MethodThrowsException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 158 + at NUnit.Tests.Assemblies.MockTestFixture.TestWithException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 153 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/nunit-sample-mochawesome.json b/tests/data/result/nunit-sample-mochawesome.json index 3669c85..f3e2cab 100644 --- a/tests/data/result/nunit-sample-mochawesome.json +++ b/tests/data/result/nunit-sample-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "c61c583a-2445-40ec-b1bb-60bbac98fce9", + "uuid": "5a4a9a88-88d2-41fa-96ab-9ce9265680b6", "title": "mock-assembly.dll", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "title": "MockTestFixture", "file": "NUnit.Tests.Assemblies.MockTestFixture", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at NUnit.Framework.Assert.Fail(String message, Object[] args) in D:\\Dev\\NUnit\\nunit-3.0\\work\\NUnitFramework\\src\\framework\\Assert.cs:line 142\n at NUnit.Framework.Assert.Fail(String message) in D:\\Dev\\NUnit\\nunit-3.0\\work\\NUnitFramework\\src\\framework\\Assert.cs:line 152\n at NUnit.Tests.Assemblies.MockTestFixture.FailingTest() in D:\\Dev\\NUnit\\nunit-3.0\\work\\NUnitFramework\\src\\mock-assembly\\MockAssembly.cs:line 121", "diff": null }, - "uuid": "039e1556-8e71-41d4-9ce8-be2128a8a100", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "0ecacb5d-222d-4641-b1e2-53dfd869797a", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -56,16 +56,19 @@ "title": "InconclusiveTest", "fullTitle": "NUnit.Tests.Assemblies.MockTestFixture.InconclusiveTest", "duration": 1, - "state": "passed", + "state": "failed", "speed": "fast", - "pass": true, - "fail": false, + "pass": false, + "fail": true, "pending": false, "context": null, "code": null, - "err": {}, - "uuid": "bea771d8-e195-4af1-add8-6f2afc0c275a", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "err": { + "message": "Inconclusive test", + "diff": null + }, + "uuid": "2c8bcf2d-9ba3-4a73-acdc-22d349d8efa7", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -81,8 +84,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Description: Mock Test #1\"]}]", "code": null, "err": {}, - "uuid": "b495359b-120d-41d2-a957-9b15d810acda", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "84d21d7b-72b0-4907-baba-73735e952d54", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -98,8 +101,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Severity: Critical\",\"Description: This is a really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really long description\",\"Category: MockCategory\"]}]", "code": null, "err": {}, - "uuid": "da71245b-13c5-465c-93cd-067d6f622853", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "901a88f6-1a42-47ed-ab6f-75efdeda5dab", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -115,8 +118,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Category: AnotherCategory\",\"Category: MockCategory\"]}]", "code": null, "err": {}, - "uuid": "af5ba899-7d70-4a16-9d01-2256102d33cc", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "719b57d9-49d3-4eee-a04c-32b1f14f1a39", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -132,8 +135,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Category: Foo\",\"_SKIPREASON: ignoring this test method for now\"]},\"skipped: ignoring this test method for now\"]", "code": null, "err": {}, - "uuid": "454f2e93-e878-4cab-8b3f-bbda74f21e2e", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "9e424c13-2fb2-46c7-a256-40f98ef1412f", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -149,8 +152,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"_SKIPREASON: Method is not public\"]},\"skipped: Method is not public\"]", "code": null, "err": {}, - "uuid": "1390f644-b659-410a-9b5a-e047c9dd9985", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "3e7430d7-5eb6-4a6a-adcb-5fcafdaec8da", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -166,8 +169,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"_SKIPREASON: No arguments were provided\"]},\"skipped: No arguments were provided\"]", "code": null, "err": {}, - "uuid": "f8eb13e1-793b-4967-9554-6fbb8f36559c", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "567f5ea1-b2e6-4450-95d7-2f56a40a5e15", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -187,8 +190,8 @@ "estack": "at NUnit.Tests.Assemblies.MockTestFixture.MethodThrowsException() in D:\\Dev\\NUnit\\nunit-3.0\\work\\NUnitFramework\\src\\mock-assembly\\MockAssembly.cs:line 158\n at NUnit.Tests.Assemblies.MockTestFixture.TestWithException() in D:\\Dev\\NUnit\\nunit-3.0\\work\\NUnitFramework\\src\\mock-assembly\\MockAssembly.cs:line 153", "diff": null }, - "uuid": "71683748-eeb8-4890-a231-6534e481bf36", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "8f6e4719-2176-45f3-b772-8191a7c3a51c", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false }, @@ -204,28 +207,28 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"TargetMethod: SomeClassName\",\"Size: 5\"]}]", "code": null, "err": {}, - "uuid": "5c862906-7e71-4f73-a9bc-6cbdd2d2bd14", - "parentUUID": "e7256a0f-5713-4a44-b7e4-674d70d404d7", + "uuid": "199460f4-3c0e-41cb-b09b-6120161aa1f7", + "parentUUID": "048bd3b2-5e68-4da9-8e61-85ebb4187cb2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bea771d8-e195-4af1-add8-6f2afc0c275a", - "b495359b-120d-41d2-a957-9b15d810acda", - "da71245b-13c5-465c-93cd-067d6f622853", - "af5ba899-7d70-4a16-9d01-2256102d33cc", - "5c862906-7e71-4f73-a9bc-6cbdd2d2bd14" + "84d21d7b-72b0-4907-baba-73735e952d54", + "901a88f6-1a42-47ed-ab6f-75efdeda5dab", + "719b57d9-49d3-4eee-a04c-32b1f14f1a39", + "199460f4-3c0e-41cb-b09b-6120161aa1f7" ], "failures": [ - "039e1556-8e71-41d4-9ce8-be2128a8a100", - "71683748-eeb8-4890-a231-6534e481bf36" + "0ecacb5d-222d-4641-b1e2-53dfd869797a", + "2c8bcf2d-9ba3-4a73-acdc-22d349d8efa7", + "8f6e4719-2176-45f3-b772-8191a7c3a51c" ], "pending": [ - "454f2e93-e878-4cab-8b3f-bbda74f21e2e", - "1390f644-b659-410a-9b5a-e047c9dd9985", - "f8eb13e1-793b-4967-9554-6fbb8f36559c" + "9e424c13-2fb2-46c7-a256-40f98ef1412f", + "3e7430d7-5eb6-4a6a-adcb-5fcafdaec8da", + "567f5ea1-b2e6-4450-95d7-2f56a40a5e15" ], "skipped": [], "duration": 119, @@ -234,7 +237,7 @@ "_timeout": 10000 }, { - "uuid": "6855d726-ebd6-46f2-ba6d-5be8439bbc50", + "uuid": "e1f9a47e-14fa-488c-8fcd-7a2570df5c8c", "title": "MethodWithParameters", "file": "NUnit.Tests.FixtureWithTestCases.MethodWithParameters", "beforeHooks": [], @@ -252,8 +255,8 @@ "context": null, "code": null, "err": {}, - "uuid": "7731c5aa-a3c4-4edd-82c2-6ecdcc87cce0", - "parentUUID": "6855d726-ebd6-46f2-ba6d-5be8439bbc50", + "uuid": "71f28993-1192-4ab6-babc-67e4dbdb677e", + "parentUUID": "e1f9a47e-14fa-488c-8fcd-7a2570df5c8c", "isHook": false, "skipped": false }, @@ -269,16 +272,16 @@ "context": null, "code": null, "err": {}, - "uuid": "9555942b-d939-4087-b2d4-806f0cbf386c", - "parentUUID": "6855d726-ebd6-46f2-ba6d-5be8439bbc50", + "uuid": "4892bcdf-9b26-4560-bebb-acaccb053ae5", + "parentUUID": "e1f9a47e-14fa-488c-8fcd-7a2570df5c8c", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "7731c5aa-a3c4-4edd-82c2-6ecdcc87cce0", - "9555942b-d939-4087-b2d4-806f0cbf386c" + "71f28993-1192-4ab6-babc-67e4dbdb677e", + "4892bcdf-9b26-4560-bebb-acaccb053ae5" ], "failures": [], "pending": [], @@ -289,7 +292,7 @@ "_timeout": 10000 }, { - "uuid": "f7a7208f-5e11-4fa2-ae24-ddf1c9d2dfe3", + "uuid": "6f38a982-3659-4215-bfe8-4bb57133eaca", "title": "ParameterizedFixture(42)", "file": "NUnit.Tests.ParameterizedFixture(42)", "beforeHooks": [], @@ -307,8 +310,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0a9ffd60-2dec-471a-b219-68ff0f463287", - "parentUUID": "f7a7208f-5e11-4fa2-ae24-ddf1c9d2dfe3", + "uuid": "9f974f5e-879d-474f-9cd2-fe7a3e5d4f1e", + "parentUUID": "6f38a982-3659-4215-bfe8-4bb57133eaca", "isHook": false, "skipped": false }, @@ -324,16 +327,16 @@ "context": null, "code": null, "err": {}, - "uuid": "e5c55e7e-7eb5-47e8-83de-38ca84035a6a", - "parentUUID": "f7a7208f-5e11-4fa2-ae24-ddf1c9d2dfe3", + "uuid": "8819d5fe-2ff4-479c-95cf-d5a1266019d0", + "parentUUID": "6f38a982-3659-4215-bfe8-4bb57133eaca", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0a9ffd60-2dec-471a-b219-68ff0f463287", - "e5c55e7e-7eb5-47e8-83de-38ca84035a6a" + "9f974f5e-879d-474f-9cd2-fe7a3e5d4f1e", + "8819d5fe-2ff4-479c-95cf-d5a1266019d0" ], "failures": [], "pending": [], @@ -344,7 +347,7 @@ "_timeout": 10000 }, { - "uuid": "895be304-efd6-42fb-a1fb-0a6ddc1e9776", + "uuid": "4c6b192d-ff99-43e1-827a-3d266cec66e2", "title": "ParameterizedFixture(5)", "file": "NUnit.Tests.ParameterizedFixture(5)", "beforeHooks": [], @@ -362,8 +365,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3d1fb1af-4450-418d-bedc-1804079163a2", - "parentUUID": "895be304-efd6-42fb-a1fb-0a6ddc1e9776", + "uuid": "eb01a7f6-6b1b-4e0d-b149-a9655d510483", + "parentUUID": "4c6b192d-ff99-43e1-827a-3d266cec66e2", "isHook": false, "skipped": false }, @@ -379,16 +382,16 @@ "context": null, "code": null, "err": {}, - "uuid": "e4604f88-12f0-4af1-950f-fb096b1540c1", - "parentUUID": "895be304-efd6-42fb-a1fb-0a6ddc1e9776", + "uuid": "969f71e6-7f62-4b85-b1db-150038e0095f", + "parentUUID": "4c6b192d-ff99-43e1-827a-3d266cec66e2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3d1fb1af-4450-418d-bedc-1804079163a2", - "e4604f88-12f0-4af1-950f-fb096b1540c1" + "eb01a7f6-6b1b-4e0d-b149-a9655d510483", + "969f71e6-7f62-4b85-b1db-150038e0095f" ], "failures": [], "pending": [], @@ -399,7 +402,7 @@ "_timeout": 10000 }, { - "uuid": "f450004f-864d-4531-8b6b-1b6a5058d55d", + "uuid": "ca37c2fa-b9c3-413f-ba99-203f7d75f6b1", "title": "OneTestCase", "file": "NUnit.Tests.Singletons.OneTestCase", "beforeHooks": [], @@ -417,15 +420,15 @@ "context": null, "code": null, "err": {}, - "uuid": "9252412b-142f-4d13-b3d4-c88e153ae42b", - "parentUUID": "f450004f-864d-4531-8b6b-1b6a5058d55d", + "uuid": "d587f9b4-fe1d-42eb-a13d-95990d6ab63f", + "parentUUID": "ca37c2fa-b9c3-413f-ba99-203f7d75f6b1", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9252412b-142f-4d13-b3d4-c88e153ae42b" + "d587f9b4-fe1d-42eb-a13d-95990d6ab63f" ], "failures": [], "pending": [], @@ -436,7 +439,7 @@ "_timeout": 10000 }, { - "uuid": "9d9ce964-327b-42eb-b050-857b91603175", + "uuid": "dd37ac8f-7a9c-407d-9b9a-76ea798e1dc2", "title": "MockTestFixture", "file": "NUnit.Tests.TestAssembly.MockTestFixture", "beforeHooks": [], @@ -454,15 +457,15 @@ "context": null, "code": null, "err": {}, - "uuid": "55785af3-ac40-44e2-850f-a12b62a6e817", - "parentUUID": "9d9ce964-327b-42eb-b050-857b91603175", + "uuid": "3bb92924-11dc-43e1-9825-fb4c9cfdcab8", + "parentUUID": "dd37ac8f-7a9c-407d-9b9a-76ea798e1dc2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "55785af3-ac40-44e2-850f-a12b62a6e817" + "3bb92924-11dc-43e1-9825-fb4c9cfdcab8" ], "failures": [], "pending": [], diff --git a/tests/data/result/nunit-short-junit.xml b/tests/data/result/nunit-short-junit.xml new file mode 100644 index 0000000..19b1072 --- /dev/null +++ b/tests/data/result/nunit-short-junit.xml @@ -0,0 +1,46 @@ + + + + + Running ExampleTestFixture.SetupMethod + Running ExampleTestFixture.SimpleTest + + + + + + + + + + + + Running ExampleTestFixture.SetupMethod + Running ExampleTestFixture.ParameterizedTest + + + + + + + + Running ExampleTestFixture.SetupMethod + Running ExampleTestFixture.ParameterizedTest + + + + + + + Running ExampleTestFixture.SetupMethod + Running ExampleTestFixture.TestWithSource + + + + + Running ExampleTestFixture.SetupMethod + Running ExampleTestFixture.TestWithSource + + + + \ No newline at end of file diff --git a/tests/data/result/nunit-short-mochawesome.json b/tests/data/result/nunit-short-mochawesome.json index 3312613..662d7eb 100644 --- a/tests/data/result/nunit-short-mochawesome.json +++ b/tests/data/result/nunit-short-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "30440d83-1ecf-4510-a95f-bdec8ab16315", + "uuid": "ebdd810b-51df-4cc2-8c0c-7d916f063792", "title": "TestLibrary.Example.dll", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "575be30b-7d08-4f3e-9786-eb3f98663a1d", + "uuid": "70bd0f0b-0416-4dec-9eb2-523952256a09", "title": "ExampleTestFixture", "file": "TestLibrary.Example.ExampleTestFixture", "beforeHooks": [], @@ -43,15 +43,15 @@ "context": "[{\"title\":\"system-out\",\"value\":\"Running ExampleTestFixture.SetupMethod\\n Running ExampleTestFixture.SimpleTest\"}]", "code": null, "err": {}, - "uuid": "c857820b-0bc3-4e9b-a438-686de9a804e8", - "parentUUID": "575be30b-7d08-4f3e-9786-eb3f98663a1d", + "uuid": "2900926d-6583-4000-bef0-7a0b02faceca", + "parentUUID": "70bd0f0b-0416-4dec-9eb2-523952256a09", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "c857820b-0bc3-4e9b-a438-686de9a804e8" + "2900926d-6583-4000-bef0-7a0b02faceca" ], "failures": [], "pending": [], @@ -62,7 +62,7 @@ "_timeout": 10000 }, { - "uuid": "967ebcb8-642c-4fc8-aec5-2b5f85e16b6c", + "uuid": "ccebb45c-8b38-4247-a8d6-fd4bd6e8b37e", "title": "ParameterizedTest", "file": "TestLibrary.Example.ExampleTestFixture.ParameterizedTest", "beforeHooks": [], @@ -80,8 +80,8 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"_JOINTYPE: Combinatorial\",\"_PID: 8204\",\"_APPDOMAIN: domain-4461bdb5-TestLibrary.Example.dll\"]},{\"title\":\"system-out\",\"value\":\"Running ExampleTestFixture.SetupMethod\\n Running ExampleTestFixture.ParameterizedTest\"}]", "code": null, "err": {}, - "uuid": "e688973d-bf8e-4dcb-a11d-9591880b645e", - "parentUUID": "967ebcb8-642c-4fc8-aec5-2b5f85e16b6c", + "uuid": "f2f83528-fed0-482f-86cb-741ca02584ef", + "parentUUID": "ccebb45c-8b38-4247-a8d6-fd4bd6e8b37e", "isHook": false, "skipped": false }, @@ -97,16 +97,16 @@ "context": "[{\"title\":\"Properties\",\"value\":[\"Description: Ensures aria-label is not present instead of empty string\"]},{\"title\":\"system-out\",\"value\":\"Running ExampleTestFixture.SetupMethod\\n Running ExampleTestFixture.ParameterizedTest\"}]", "code": null, "err": {}, - "uuid": "1ce3ad5d-e796-422f-87a5-2214fea970ad", - "parentUUID": "967ebcb8-642c-4fc8-aec5-2b5f85e16b6c", + "uuid": "4af565ac-2e4d-44be-b80b-fcbeb5486d88", + "parentUUID": "ccebb45c-8b38-4247-a8d6-fd4bd6e8b37e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "e688973d-bf8e-4dcb-a11d-9591880b645e", - "1ce3ad5d-e796-422f-87a5-2214fea970ad" + "f2f83528-fed0-482f-86cb-741ca02584ef", + "4af565ac-2e4d-44be-b80b-fcbeb5486d88" ], "failures": [], "pending": [], @@ -117,7 +117,7 @@ "_timeout": 10000 }, { - "uuid": "5b9ae9a7-a6e8-4dec-b7d7-cb43e13e57db", + "uuid": "3cc7660c-bf45-42c5-9238-9709f78de30b", "title": "TestWithSource", "file": "TestLibrary.Example.ExampleTestFixture.TestWithSource", "beforeHooks": [], @@ -135,8 +135,8 @@ "context": "[{\"title\":\"system-out\",\"value\":\"Running ExampleTestFixture.SetupMethod\\n Running ExampleTestFixture.TestWithSource\"}]", "code": null, "err": {}, - "uuid": "bf115fdd-4525-48b0-8465-47eeff2456e9", - "parentUUID": "5b9ae9a7-a6e8-4dec-b7d7-cb43e13e57db", + "uuid": "6761285c-364c-4fc0-8c39-97184b5a09dc", + "parentUUID": "3cc7660c-bf45-42c5-9238-9709f78de30b", "isHook": false, "skipped": false }, @@ -152,16 +152,16 @@ "context": "[{\"title\":\"system-out\",\"value\":\"Running ExampleTestFixture.SetupMethod\\n Running ExampleTestFixture.TestWithSource\"}]", "code": null, "err": {}, - "uuid": "14845f6a-b75f-4f0f-bf7a-c6d1c7aa0f78", - "parentUUID": "5b9ae9a7-a6e8-4dec-b7d7-cb43e13e57db", + "uuid": "123b2bbb-161a-4333-8d2b-3f550b8b229b", + "parentUUID": "3cc7660c-bf45-42c5-9238-9709f78de30b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bf115fdd-4525-48b0-8465-47eeff2456e9", - "14845f6a-b75f-4f0f-bf7a-c6d1c7aa0f78" + "6761285c-364c-4fc0-8c39-97184b5a09dc", + "123b2bbb-161a-4333-8d2b-3f550b8b229b" ], "failures": [], "pending": [], diff --git a/tests/data/result/trx-mstest-datadriven-junit.xml b/tests/data/result/trx-mstest-datadriven-junit.xml new file mode 100644 index 0000000..fbb6d95 --- /dev/null +++ b/tests/data/result/trx-mstest-datadriven-junit.xml @@ -0,0 +1,17 @@ + + + + + at MsTestSample.DataDriven.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\MsTestSample\DataDriven.cs:line 25 + + + + + + + at MsTestSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\Work-Git\github\Mini\trx2junit\samples\MsTestSample\DataDriven.cs:line 16 + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-mstest-datadriven-mochawesome.json b/tests/data/result/trx-mstest-datadriven-mochawesome.json index fc8c784..33633bc 100644 --- a/tests/data/result/trx-mstest-datadriven-mochawesome.json +++ b/tests/data/result/trx-mstest-datadriven-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "d5e11b20-37c0-443a-9b20-5328702a0e82", + "uuid": "71cf1559-59f3-40e6-b299-50f1c74824dd", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "title": "MsTestSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at MsTestSample.DataDriven.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\MsTestSample\\DataDriven.cs:line 25", "diff": null }, - "uuid": "67131c07-9855-486e-b448-a02ab66d59bc", - "parentUUID": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "b95402f0-5210-47e2-8bbd-d2565986ee75", + "parentUUID": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "09b49361-a256-4295-bf86-17cec2e6ab4a", - "parentUUID": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "0a4d32af-00aa-44b0-8a68-6fbd25665d3f", + "parentUUID": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "15171883-7cb1-4819-9fce-d7a714d65b36", - "parentUUID": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "38045493-add1-425c-8881-d8004979ed7a", + "parentUUID": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at MsTestSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\MsTestSample\\DataDriven.cs:line 16", "diff": null }, - "uuid": "e2a746b5-7384-4601-afbf-dcd08c88441a", - "parentUUID": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "6cdaf220-e4e4-4d4a-87b6-ec73607c128d", + "parentUUID": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "f011c430-db85-4cae-b771-27c116259e9e", - "parentUUID": "d7132400-d019-4ae5-9742-d7704fe5111a", + "uuid": "4ec4f473-61bb-4d48-a775-1cd4bc359b75", + "parentUUID": "ee829f23-aeea-4ed4-ac9a-c0f9a5c360e5", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "09b49361-a256-4295-bf86-17cec2e6ab4a", - "15171883-7cb1-4819-9fce-d7a714d65b36", - "f011c430-db85-4cae-b771-27c116259e9e" + "0a4d32af-00aa-44b0-8a68-6fbd25665d3f", + "38045493-add1-425c-8881-d8004979ed7a", + "4ec4f473-61bb-4d48-a775-1cd4bc359b75" ], "failures": [ - "67131c07-9855-486e-b448-a02ab66d59bc", - "e2a746b5-7384-4601-afbf-dcd08c88441a" + "b95402f0-5210-47e2-8bbd-d2565986ee75", + "6cdaf220-e4e4-4d4a-87b6-ec73607c128d" ], "pending": [], "skipped": [], diff --git a/tests/data/result/trx-mstest-ignore-junit.xml b/tests/data/result/trx-mstest-ignore-junit.xml new file mode 100644 index 0000000..b5d5b79 --- /dev/null +++ b/tests/data/result/trx-mstest-ignore-junit.xml @@ -0,0 +1,14 @@ + + + + + at MsTestSample.SimpleTests.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\MsTestSample\SimpleTests.cs:line 20 + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-mstest-ignore-mochawesome.json b/tests/data/result/trx-mstest-ignore-mochawesome.json index 83440fd..f1ae8cb 100644 --- a/tests/data/result/trx-mstest-ignore-mochawesome.json +++ b/tests/data/result/trx-mstest-ignore-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "02323a8a-7dab-49fd-a714-9e785db279a8", + "uuid": "fb874bf7-585e-4b01-9887-76a55b292044", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "cfdd10e9-7272-447a-859f-aff3a23e8f9b", + "uuid": "fbed4a41-e4bb-4e02-876a-4b33b75c3e6f", "title": "MsTestSample.SimpleTests", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at MsTestSample.SimpleTests.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\MsTestSample\\SimpleTests.cs:line 20", "diff": null }, - "uuid": "0631a80b-0091-400e-ae05-62fa8a71231e", - "parentUUID": "cfdd10e9-7272-447a-859f-aff3a23e8f9b", + "uuid": "5ab88059-b0b2-4380-b58c-16cc51e72235", + "parentUUID": "fbed4a41-e4bb-4e02-876a-4b33b75c3e6f", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "8f6d5c6b-c51a-4213-8273-f84d238f236c", - "parentUUID": "cfdd10e9-7272-447a-859f-aff3a23e8f9b", + "uuid": "188c66ee-511c-423d-889e-eb2197c1bd4a", + "parentUUID": "fbed4a41-e4bb-4e02-876a-4b33b75c3e6f", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "8beee494-bd7c-442c-a24b-f767b6dbf581", - "parentUUID": "cfdd10e9-7272-447a-859f-aff3a23e8f9b", + "uuid": "81dd2757-5bc1-4a07-94c8-af4b09adfa18", + "parentUUID": "fbed4a41-e4bb-4e02-876a-4b33b75c3e6f", "isHook": false, "skipped": false }, @@ -98,22 +98,22 @@ "context": null, "code": null, "err": {}, - "uuid": "b739bdb0-563e-4678-b51b-491589b357fa", - "parentUUID": "cfdd10e9-7272-447a-859f-aff3a23e8f9b", + "uuid": "365787b6-7c12-4315-97fc-43f77c83cb88", + "parentUUID": "fbed4a41-e4bb-4e02-876a-4b33b75c3e6f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8beee494-bd7c-442c-a24b-f767b6dbf581", - "b739bdb0-563e-4678-b51b-491589b357fa" + "81dd2757-5bc1-4a07-94c8-af4b09adfa18", + "365787b6-7c12-4315-97fc-43f77c83cb88" ], "failures": [ - "0631a80b-0091-400e-ae05-62fa8a71231e" + "5ab88059-b0b2-4380-b58c-16cc51e72235" ], "pending": [ - "8f6d5c6b-c51a-4213-8273-f84d238f236c" + "188c66ee-511c-423d-889e-eb2197c1bd4a" ], "skipped": [], "duration": 1038, diff --git a/tests/data/result/trx-mstest-junit.xml b/tests/data/result/trx-mstest-junit.xml new file mode 100644 index 0000000..a7ab733 --- /dev/null +++ b/tests/data/result/trx-mstest-junit.xml @@ -0,0 +1,35 @@ + + + + + at MsTestSample.DataDriven.Failing_test() in C:\projects\trx2junit\samples\MsTestSample\DataDriven.cs:line 25 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr) + + + + + + + at MsTestSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\projects\trx2junit\samples\MsTestSample\DataDriven.cs:line 16 + at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithOneArg(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + + + + + + + + at MsTestSample.SimpleTests.Failing_test() in C:\projects\trx2junit\samples\MsTestSample\SimpleTests.cs:line 20 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr) + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-mstest-mochawesome.json b/tests/data/result/trx-mstest-mochawesome.json index fdb6563..f023805 100644 --- a/tests/data/result/trx-mstest-mochawesome.json +++ b/tests/data/result/trx-mstest-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "3bce5cde-fc42-469b-a9a5-3ab3edc47c78", + "uuid": "9456ff7e-f3c8-4765-8bbc-f40a428f9d0a", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "51539e32-3a79-4285-a886-476a344801af", "title": "MsTestSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at MsTestSample.DataDriven.Failing_test() in C:\\projects\\trx2junit\\samples\\MsTestSample\\DataDriven.cs:line 25\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)", "diff": null }, - "uuid": "ba9a3c92-353e-4ca9-948a-369f7889043f", - "parentUUID": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "909fefda-ae40-4df5-b035-45956eb983d3", + "parentUUID": "51539e32-3a79-4285-a886-476a344801af", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a75a603b-d1b1-4f5f-8953-30ce0c5a0daf", - "parentUUID": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "34125e30-7ddf-4eb4-9a9c-2ddf9bd602ed", + "parentUUID": "51539e32-3a79-4285-a886-476a344801af", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ff5e1f51-21ad-46a4-9ba0-463d7dc785de", - "parentUUID": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "bd1b2992-3378-4d98-b62b-89baf1aa0b78", + "parentUUID": "51539e32-3a79-4285-a886-476a344801af", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at MsTestSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\\projects\\trx2junit\\samples\\MsTestSample\\DataDriven.cs:line 16\n at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1)\n at System.Reflection.MethodBaseInvoker.InvokeWithOneArg(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)", "diff": null }, - "uuid": "61a33bb3-baa6-4276-99db-903649087fba", - "parentUUID": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "abc64658-8675-4d22-bb7d-080a30a17b68", + "parentUUID": "51539e32-3a79-4285-a886-476a344801af", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "b664da20-a215-48c7-8b18-81bb72365407", - "parentUUID": "4d33b0fb-6cbf-4b15-881b-f01adef81d6e", + "uuid": "cf1aac2b-ccfd-451c-9470-f0c0e131fb79", + "parentUUID": "51539e32-3a79-4285-a886-476a344801af", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "a75a603b-d1b1-4f5f-8953-30ce0c5a0daf", - "ff5e1f51-21ad-46a4-9ba0-463d7dc785de", - "b664da20-a215-48c7-8b18-81bb72365407" + "34125e30-7ddf-4eb4-9a9c-2ddf9bd602ed", + "bd1b2992-3378-4d98-b62b-89baf1aa0b78", + "cf1aac2b-ccfd-451c-9470-f0c0e131fb79" ], "failures": [ - "ba9a3c92-353e-4ca9-948a-369f7889043f", - "61a33bb3-baa6-4276-99db-903649087fba" + "909fefda-ae40-4df5-b035-45956eb983d3", + "abc64658-8675-4d22-bb7d-080a30a17b68" ], "pending": [], "skipped": [], @@ -143,7 +143,7 @@ "_timeout": 10000 }, { - "uuid": "acd14821-bdf3-4121-a1f2-0a0fc8a4044f", + "uuid": "a9257f74-b40b-49d7-ae16-b8606e29b806", "title": "MsTestSample.SimpleTests", "file": "", "beforeHooks": [], @@ -165,8 +165,8 @@ "estack": "at MsTestSample.SimpleTests.Failing_test() in C:\\projects\\trx2junit\\samples\\MsTestSample\\SimpleTests.cs:line 20\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)", "diff": null }, - "uuid": "eb926280-b18b-42eb-9176-6d6aa04b6d25", - "parentUUID": "acd14821-bdf3-4121-a1f2-0a0fc8a4044f", + "uuid": "d7bb517d-547a-453f-899e-b719be674bd3", + "parentUUID": "a9257f74-b40b-49d7-ae16-b8606e29b806", "isHook": false, "skipped": false }, @@ -182,8 +182,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "e5b87d4f-c654-4289-9e5a-031b4c090a04", - "parentUUID": "acd14821-bdf3-4121-a1f2-0a0fc8a4044f", + "uuid": "0ae6391a-2463-4674-b1f4-345b3494afc5", + "parentUUID": "a9257f74-b40b-49d7-ae16-b8606e29b806", "isHook": false, "skipped": false }, @@ -199,8 +199,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3281b294-211b-4442-b86d-85b34018b15a", - "parentUUID": "acd14821-bdf3-4121-a1f2-0a0fc8a4044f", + "uuid": "fbc41ace-abd9-49ba-a9f7-dd7ecf1cdbef", + "parentUUID": "a9257f74-b40b-49d7-ae16-b8606e29b806", "isHook": false, "skipped": false }, @@ -216,22 +216,22 @@ "context": null, "code": null, "err": {}, - "uuid": "76d84f40-315e-48bf-bfd2-b0d95b624932", - "parentUUID": "acd14821-bdf3-4121-a1f2-0a0fc8a4044f", + "uuid": "ffd48d74-c2ab-428e-95ea-12f14e498edd", + "parentUUID": "a9257f74-b40b-49d7-ae16-b8606e29b806", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3281b294-211b-4442-b86d-85b34018b15a", - "76d84f40-315e-48bf-bfd2-b0d95b624932" + "fbc41ace-abd9-49ba-a9f7-dd7ecf1cdbef", + "ffd48d74-c2ab-428e-95ea-12f14e498edd" ], "failures": [ - "eb926280-b18b-42eb-9176-6d6aa04b6d25" + "d7bb517d-547a-453f-899e-b719be674bd3" ], "pending": [ - "e5b87d4f-c654-4289-9e5a-031b4c090a04" + "0ae6391a-2463-4674-b1f4-345b3494afc5" ], "skipped": [], "duration": 1014, diff --git a/tests/data/result/trx-nunit-datadriven-junit.xml b/tests/data/result/trx-nunit-datadriven-junit.xml new file mode 100644 index 0000000..f1dd5ca --- /dev/null +++ b/tests/data/result/trx-nunit-datadriven-junit.xml @@ -0,0 +1,17 @@ + + + + + at NUnitSample.DataDriven.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\NUnitSample\DataDriven.cs:line 27 + + + + + + + at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\Work-Git\github\Mini\trx2junit\samples\NUnitSample\DataDriven.cs:line 18 + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-nunit-datadriven-mochawesome.json b/tests/data/result/trx-nunit-datadriven-mochawesome.json index 0a3de05..319d3ab 100644 --- a/tests/data/result/trx-nunit-datadriven-mochawesome.json +++ b/tests/data/result/trx-nunit-datadriven-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "ce52cd34-79a8-4af4-a8f0-d8e0afcddbbf", + "uuid": "418b62ed-f90d-4fc1-b3cf-5a1f61aaebdf", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "b90982dc-96e6-4699-837c-f715ad97fae0", "title": "NUnitSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at NUnitSample.DataDriven.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 27", "diff": null }, - "uuid": "3ad8d84a-a83a-4f36-8b28-fa7bb9deb731", - "parentUUID": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "1e38cd8e-c7f5-48bd-91ee-2b825335d6cc", + "parentUUID": "b90982dc-96e6-4699-837c-f715ad97fae0", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "49e33ee8-4f36-48cd-8051-f0792f81d207", - "parentUUID": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "4d5db964-cd60-475f-bfa6-407fb2ed354d", + "parentUUID": "b90982dc-96e6-4699-837c-f715ad97fae0", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "55b273c7-12a9-40e6-a876-01c753bdaf33", - "parentUUID": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "4de5c7ab-6590-4f6a-a5f9-6ee3be749c67", + "parentUUID": "b90982dc-96e6-4699-837c-f715ad97fae0", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 18", "diff": null }, - "uuid": "6d8f7d50-60b4-4f23-a507-090ed962f58d", - "parentUUID": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "56d613aa-8d52-4760-afc5-e68c9637050a", + "parentUUID": "b90982dc-96e6-4699-837c-f715ad97fae0", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "a1eb3a7b-0818-46a8-8d18-1ab5b3a09b97", - "parentUUID": "354f86dc-683f-491b-a5c0-13be7e3f41d1", + "uuid": "0f88b99d-c40a-4b1e-8c06-1c325419bd93", + "parentUUID": "b90982dc-96e6-4699-837c-f715ad97fae0", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "49e33ee8-4f36-48cd-8051-f0792f81d207", - "55b273c7-12a9-40e6-a876-01c753bdaf33", - "a1eb3a7b-0818-46a8-8d18-1ab5b3a09b97" + "4d5db964-cd60-475f-bfa6-407fb2ed354d", + "4de5c7ab-6590-4f6a-a5f9-6ee3be749c67", + "0f88b99d-c40a-4b1e-8c06-1c325419bd93" ], "failures": [ - "3ad8d84a-a83a-4f36-8b28-fa7bb9deb731", - "6d8f7d50-60b4-4f23-a507-090ed962f58d" + "1e38cd8e-c7f5-48bd-91ee-2b825335d6cc", + "56d613aa-8d52-4760-afc5-e68c9637050a" ], "pending": [], "skipped": [], diff --git a/tests/data/result/trx-nunit-ignore-junit.xml b/tests/data/result/trx-nunit-ignore-junit.xml new file mode 100644 index 0000000..2292e88 --- /dev/null +++ b/tests/data/result/trx-nunit-ignore-junit.xml @@ -0,0 +1,17 @@ + + + + + at NUnitSample.SimpleTests.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\NUnitSample\SimpleTests.cs:line 21 + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-nunit-ignore-mochawesome.json b/tests/data/result/trx-nunit-ignore-mochawesome.json index 619e7a1..635cbaf 100644 --- a/tests/data/result/trx-nunit-ignore-mochawesome.json +++ b/tests/data/result/trx-nunit-ignore-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "efea1354-1db9-48eb-bb01-ddf3beb0eeb9", + "uuid": "c1df39aa-42b8-4764-8279-1cdd353ddd17", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "2ebc9388-43ef-45ee-9430-b1666707f75f", "title": "NUnitSample.SimpleTests", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at NUnitSample.SimpleTests.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\NUnitSample\\SimpleTests.cs:line 21", "diff": null }, - "uuid": "9b48169b-3536-482d-820e-581541dd54a3", - "parentUUID": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "b79ca8a5-96c5-4c7a-a55f-c67c4dd241c2", + "parentUUID": "2ebc9388-43ef-45ee-9430-b1666707f75f", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "851a89c0-4e9e-4376-993a-68821d1b4d4d", - "parentUUID": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "7f88cbf4-ebfc-41fa-948f-77777ee0bf35", + "parentUUID": "2ebc9388-43ef-45ee-9430-b1666707f75f", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "52a38360-ce34-4269-9240-aee235aa3ada", - "parentUUID": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "32fa64fa-a394-4d6c-a0ac-f936818de177", + "parentUUID": "2ebc9388-43ef-45ee-9430-b1666707f75f", "isHook": false, "skipped": false }, @@ -98,8 +98,8 @@ "context": null, "code": null, "err": {}, - "uuid": "73a57671-647a-4eee-98cd-9b80353da5ec", - "parentUUID": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "392c9de3-1c54-47d9-acb3-30101d260c7e", + "parentUUID": "2ebc9388-43ef-45ee-9430-b1666707f75f", "isHook": false, "skipped": false }, @@ -115,23 +115,23 @@ "context": "[\"skipped: Expected: True But was: False \"]", "code": null, "err": {}, - "uuid": "ec4986d3-259e-4b9d-a1cd-6a072df5db05", - "parentUUID": "05a2313b-3ef4-4162-a3da-5e5ef326f19b", + "uuid": "d163a94c-d70c-4e22-acf7-3d93d110fd20", + "parentUUID": "2ebc9388-43ef-45ee-9430-b1666707f75f", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "52a38360-ce34-4269-9240-aee235aa3ada", - "73a57671-647a-4eee-98cd-9b80353da5ec" + "32fa64fa-a394-4d6c-a0ac-f936818de177", + "392c9de3-1c54-47d9-acb3-30101d260c7e" ], "failures": [ - "9b48169b-3536-482d-820e-581541dd54a3" + "b79ca8a5-96c5-4c7a-a55f-c67c4dd241c2" ], "pending": [ - "851a89c0-4e9e-4376-993a-68821d1b4d4d", - "ec4986d3-259e-4b9d-a1cd-6a072df5db05" + "7f88cbf4-ebfc-41fa-948f-77777ee0bf35", + "d163a94c-d70c-4e22-acf7-3d93d110fd20" ], "skipped": [], "duration": 1074, diff --git a/tests/data/result/trx-nunit-junit.xml b/tests/data/result/trx-nunit-junit.xml new file mode 100644 index 0000000..8e86ff4 --- /dev/null +++ b/tests/data/result/trx-nunit-junit.xml @@ -0,0 +1,75 @@ + + + + + at NUnitSample.DataDriven.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\DataDriven.cs:line 27 + +1) at NUnitSample.DataDriven.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\DataDriven.cs:line 27 + + + + + + + at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\projects\trx2junit\samples\NUnitSample\DataDriven.cs:line 18 + at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1) + +1) at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\projects\trx2junit\samples\NUnitSample\DataDriven.cs:line 18 + at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1) + + + + + + + + at NUnitSample.MemberData.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\MemberData.cs:line 31 + +1) at NUnitSample.MemberData.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\MemberData.cs:line 31 + + + + + + + at NUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\projects\trx2junit\samples\NUnitSample\MemberData.cs:line 22 + at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1) + +1) at NUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\projects\trx2junit\samples\NUnitSample\MemberData.cs:line 22 + at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1) + + + + + + + + at NUnitSample.SimpleTests.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\SimpleTests.cs:line 21 + +1) at NUnitSample.SimpleTests.Failing_test() in C:\projects\trx2junit\samples\NUnitSample\SimpleTests.cs:line 21 + + + + + + + Ignoring for testing ;-) + + + + + + + message written to stdout + + + + + + + Expected: True + But was: False + + + + \ No newline at end of file diff --git a/tests/data/result/trx-nunit-mochawesome.json b/tests/data/result/trx-nunit-mochawesome.json index 532059b..cad67d1 100644 --- a/tests/data/result/trx-nunit-mochawesome.json +++ b/tests/data/result/trx-nunit-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "61a38f80-d4a7-4a6f-ab3d-5231860687a6", + "uuid": "0a8e63d2-bd1c-41b8-b7ee-453bbb32266c", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "title": "NUnitSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at NUnitSample.DataDriven.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 27\n\n1) at NUnitSample.DataDriven.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 27", "diff": null }, - "uuid": "d71c556b-0b9c-47ba-9078-8a59effc263a", - "parentUUID": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "778f10e8-dce9-43c0-88bd-9c6e3c33c987", + "parentUUID": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "adc5d910-41a8-494d-9ec2-46e91b11079e", - "parentUUID": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "1b681fb6-859c-49d8-96fa-391fc6544d97", + "parentUUID": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4ea060fc-1579-4052-8e4f-646f0977b225", - "parentUUID": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "1c821a31-a7e0-4c64-a3f9-ee99abfa3b97", + "parentUUID": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\\projects\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 18\n at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1)\n\n1) at NUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\\projects\\trx2junit\\samples\\NUnitSample\\DataDriven.cs:line 18\n at InvokeStub_DataDriven.Two_pass_one_fails(Object, Span`1)", "diff": null }, - "uuid": "e3c26343-1a46-48e6-954a-d71ca6fc1473", - "parentUUID": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "d150bcdd-c0a1-4c74-97b8-1cb7a672999e", + "parentUUID": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "12dfabaf-5e71-473b-bab5-d386165b1b72", - "parentUUID": "1038ff8c-2ae9-4391-930a-8bb1dcec04e0", + "uuid": "005e4220-a30e-4533-a4dd-969b9ddab51d", + "parentUUID": "f7e6eef1-62e3-4c7d-8e22-f105628ef751", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "adc5d910-41a8-494d-9ec2-46e91b11079e", - "4ea060fc-1579-4052-8e4f-646f0977b225", - "12dfabaf-5e71-473b-bab5-d386165b1b72" + "1b681fb6-859c-49d8-96fa-391fc6544d97", + "1c821a31-a7e0-4c64-a3f9-ee99abfa3b97", + "005e4220-a30e-4533-a4dd-969b9ddab51d" ], "failures": [ - "d71c556b-0b9c-47ba-9078-8a59effc263a", - "e3c26343-1a46-48e6-954a-d71ca6fc1473" + "778f10e8-dce9-43c0-88bd-9c6e3c33c987", + "d150bcdd-c0a1-4c74-97b8-1cb7a672999e" ], "pending": [], "skipped": [], @@ -143,7 +143,7 @@ "_timeout": 10000 }, { - "uuid": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "title": "NUnitSample.MemberData", "file": "", "beforeHooks": [], @@ -165,8 +165,8 @@ "estack": "at NUnitSample.MemberData.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\MemberData.cs:line 31\n\n1) at NUnitSample.MemberData.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\MemberData.cs:line 31", "diff": null }, - "uuid": "ea734507-2fb6-47fe-b972-9d58ee780ebf", - "parentUUID": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "ea4ba606-e67b-48c8-9d3c-8b259fca509d", + "parentUUID": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "isHook": false, "skipped": false }, @@ -182,8 +182,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5764aaa3-c6ec-43e0-a83f-d1794c9135c3", - "parentUUID": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "70b66551-1623-41a1-9769-fb06ed77a06a", + "parentUUID": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "isHook": false, "skipped": false }, @@ -199,8 +199,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3b37e0d9-930d-435b-8e4a-75ca60079a2a", - "parentUUID": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "58d98c7b-d13e-4ef2-8813-c2820864af22", + "parentUUID": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "isHook": false, "skipped": false }, @@ -220,8 +220,8 @@ "estack": "at NUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\\projects\\trx2junit\\samples\\NUnitSample\\MemberData.cs:line 22\n at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1)\n\n1) at NUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\\projects\\trx2junit\\samples\\NUnitSample\\MemberData.cs:line 22\n at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1)", "diff": null }, - "uuid": "b0bc339c-821b-42ca-9a16-6c407ee548b4", - "parentUUID": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "76f3789f-69d8-46bd-bfef-0481ecfd03f8", + "parentUUID": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "isHook": false, "skipped": false }, @@ -237,21 +237,21 @@ "context": null, "code": null, "err": {}, - "uuid": "4b167ee9-baf7-40e5-a3e2-d0e7183d070e", - "parentUUID": "04dd9c79-cada-45e5-b01d-6c7c1117ae37", + "uuid": "2a8e14c8-1544-4080-84b1-7b1b17569368", + "parentUUID": "7bcb014a-a336-4e0d-b3fa-15aa23903e0a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "5764aaa3-c6ec-43e0-a83f-d1794c9135c3", - "3b37e0d9-930d-435b-8e4a-75ca60079a2a", - "4b167ee9-baf7-40e5-a3e2-d0e7183d070e" + "70b66551-1623-41a1-9769-fb06ed77a06a", + "58d98c7b-d13e-4ef2-8813-c2820864af22", + "2a8e14c8-1544-4080-84b1-7b1b17569368" ], "failures": [ - "ea734507-2fb6-47fe-b972-9d58ee780ebf", - "b0bc339c-821b-42ca-9a16-6c407ee548b4" + "ea4ba606-e67b-48c8-9d3c-8b259fca509d", + "76f3789f-69d8-46bd-bfef-0481ecfd03f8" ], "pending": [], "skipped": [], @@ -261,7 +261,7 @@ "_timeout": 10000 }, { - "uuid": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "title": "NUnitSample.SimpleTests", "file": "", "beforeHooks": [], @@ -283,8 +283,8 @@ "estack": "at NUnitSample.SimpleTests.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\SimpleTests.cs:line 21\n\n1) at NUnitSample.SimpleTests.Failing_test() in C:\\projects\\trx2junit\\samples\\NUnitSample\\SimpleTests.cs:line 21", "diff": null }, - "uuid": "ba2f6887-bab5-414a-90de-a8d61461f8b8", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "9a204386-c7d5-4d37-9676-4b32f8304e5a", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false }, @@ -300,8 +300,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "dede8916-c409-4bde-aed0-fce64493902c", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "5f70ac0c-cf32-4169-b582-e59af9c0abed", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false }, @@ -317,8 +317,8 @@ "context": null, "code": null, "err": {}, - "uuid": "382727b3-bfc6-4f32-a4a8-78599f360ea0", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "fdbf85fb-64eb-4714-8c52-a68c8d25bc10", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false }, @@ -334,8 +334,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c0a5d6a4-5cc0-4d0a-9470-262bbce4c8b2", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "1c22541d-824b-4ca3-ad5e-9eb783af9423", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false }, @@ -351,8 +351,8 @@ "context": "[{\"title\":\"system-out\",\"value\":\"message written to stdout\"}]", "code": null, "err": {}, - "uuid": "2a56349d-0448-45a8-917f-7af7a821902d", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "c7b22f1d-9762-4c88-9d0b-5a28c0878824", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false }, @@ -368,24 +368,24 @@ "context": "[\"skipped: Expected: True But was: False \",{\"title\":\"system-out\",\"value\":\"Expected: True \\n But was: False\"}]", "code": null, "err": {}, - "uuid": "b0a8f81a-9db9-4af8-bf36-7613b0df0450", - "parentUUID": "f8afc5c6-4a80-44f9-aece-8faaa4342627", + "uuid": "2a8ca5d5-72b6-4e1e-a98d-04f1cf773ecb", + "parentUUID": "c3fa7548-384c-452f-8637-a3ad87aa86d2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "382727b3-bfc6-4f32-a4a8-78599f360ea0", - "c0a5d6a4-5cc0-4d0a-9470-262bbce4c8b2", - "2a56349d-0448-45a8-917f-7af7a821902d" + "fdbf85fb-64eb-4714-8c52-a68c8d25bc10", + "1c22541d-824b-4ca3-ad5e-9eb783af9423", + "c7b22f1d-9762-4c88-9d0b-5a28c0878824" ], "failures": [ - "ba2f6887-bab5-414a-90de-a8d61461f8b8" + "9a204386-c7d5-4d37-9676-4b32f8304e5a" ], "pending": [ - "dede8916-c409-4bde-aed0-fce64493902c", - "b0a8f81a-9db9-4af8-bf36-7613b0df0450" + "5f70ac0c-cf32-4169-b582-e59af9c0abed", + "2a8ca5d5-72b6-4e1e-a98d-04f1cf773ecb" ], "skipped": [], "duration": 1008, diff --git a/tests/data/result/trx-xunit-datadriven-junit.xml b/tests/data/result/trx-xunit-datadriven-junit.xml new file mode 100644 index 0000000..dd3fded --- /dev/null +++ b/tests/data/result/trx-xunit-datadriven-junit.xml @@ -0,0 +1,17 @@ + + + + + at XUnitSample.DataDriven.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\XUnitSample\DataDriven.cs:line 26 + + + + + + + at XUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\Work-Git\github\Mini\trx2junit\samples\XUnitSample\DataDriven.cs:line 17 + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-xunit-datadriven-mochawesome.json b/tests/data/result/trx-xunit-datadriven-mochawesome.json index 2fa7b11..23cbc46 100644 --- a/tests/data/result/trx-xunit-datadriven-mochawesome.json +++ b/tests/data/result/trx-xunit-datadriven-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "69b0b7fa-69bf-469c-b73a-ae1f88b0e156", + "uuid": "3ad36a0c-1ff5-421c-87a3-c2a80e529a02", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "63c812e1-db14-488f-b026-389b89d96599", "title": "XUnitSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at XUnitSample.DataDriven.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\XUnitSample\\DataDriven.cs:line 26", "diff": null }, - "uuid": "a39be7c3-91a6-45f6-9690-72bf53f2e2c6", - "parentUUID": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "995423d4-30ef-4a0b-be7c-cfa6adaffba3", + "parentUUID": "63c812e1-db14-488f-b026-389b89d96599", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "09771b16-949b-43e0-a687-64ef782e4f9d", - "parentUUID": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "4fe6d098-d574-46a6-bce4-e0c68ce4f679", + "parentUUID": "63c812e1-db14-488f-b026-389b89d96599", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "b262dfa7-29de-4ebf-a32e-cc8f1434dd8e", - "parentUUID": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "21d5c526-4e28-4b6c-ac11-22e29ee7322d", + "parentUUID": "63c812e1-db14-488f-b026-389b89d96599", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at XUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\XUnitSample\\DataDriven.cs:line 17", "diff": null }, - "uuid": "a080819f-9a20-41cb-93d8-81694a485ac2", - "parentUUID": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "954afa59-621c-404e-a07c-215648915bee", + "parentUUID": "63c812e1-db14-488f-b026-389b89d96599", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "341e2691-cc09-44da-83fc-f55c42dd0795", - "parentUUID": "edb171ff-69d2-4942-bae2-623eddbf27d4", + "uuid": "38e1bf26-e8ef-4707-b124-bcb0438e83de", + "parentUUID": "63c812e1-db14-488f-b026-389b89d96599", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "09771b16-949b-43e0-a687-64ef782e4f9d", - "b262dfa7-29de-4ebf-a32e-cc8f1434dd8e", - "341e2691-cc09-44da-83fc-f55c42dd0795" + "4fe6d098-d574-46a6-bce4-e0c68ce4f679", + "21d5c526-4e28-4b6c-ac11-22e29ee7322d", + "38e1bf26-e8ef-4707-b124-bcb0438e83de" ], "failures": [ - "a39be7c3-91a6-45f6-9690-72bf53f2e2c6", - "a080819f-9a20-41cb-93d8-81694a485ac2" + "995423d4-30ef-4a0b-be7c-cfa6adaffba3", + "954afa59-621c-404e-a07c-215648915bee" ], "pending": [], "skipped": [], diff --git a/tests/data/result/trx-xunit-ignore-junit.xml b/tests/data/result/trx-xunit-ignore-junit.xml new file mode 100644 index 0000000..a589e30 --- /dev/null +++ b/tests/data/result/trx-xunit-ignore-junit.xml @@ -0,0 +1,17 @@ + + + + + at XUnitSample.SimpleTests.Failing_test() in D:\Work-Git\github\Mini\trx2junit\samples\XUnitSample\SimpleTests.cs:line 20 + + + + + + Ignoring for testing ;-) + + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-xunit-ignore-mochawesome.json b/tests/data/result/trx-xunit-ignore-mochawesome.json index f438b04..b3c7618 100644 --- a/tests/data/result/trx-xunit-ignore-mochawesome.json +++ b/tests/data/result/trx-xunit-ignore-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "b9cf74ea-8449-495f-afd0-f86f5b450efa", + "uuid": "f2541117-83e9-475e-a941-7e55fc148061", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "90be95ff-ab0f-4819-bc32-f2020a047b86", + "uuid": "3d9f61ba-9faa-47ba-92f9-d3bd903265cb", "title": "XUnitSample.SimpleTests", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at XUnitSample.SimpleTests.Failing_test() in D:\\Work-Git\\github\\Mini\\trx2junit\\samples\\XUnitSample\\SimpleTests.cs:line 20", "diff": null }, - "uuid": "0b76d622-a536-46f8-aa1e-002ea19c8764", - "parentUUID": "90be95ff-ab0f-4819-bc32-f2020a047b86", + "uuid": "bc9e466c-892a-417a-9221-a839d4caacf0", + "parentUUID": "3d9f61ba-9faa-47ba-92f9-d3bd903265cb", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "52d5f8b5-daa5-4dea-84ea-c3629de5b409", - "parentUUID": "90be95ff-ab0f-4819-bc32-f2020a047b86", + "uuid": "09978a9f-a359-43de-941d-e3b5a5db796c", + "parentUUID": "3d9f61ba-9faa-47ba-92f9-d3bd903265cb", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9b416b49-c41b-4892-8740-fb8f8aaa43fa", - "parentUUID": "90be95ff-ab0f-4819-bc32-f2020a047b86", + "uuid": "3f4f5818-36e1-478e-bcc1-fd6c7521e21f", + "parentUUID": "3d9f61ba-9faa-47ba-92f9-d3bd903265cb", "isHook": false, "skipped": false }, @@ -98,22 +98,22 @@ "context": null, "code": null, "err": {}, - "uuid": "30f2fb90-91a3-4176-833e-1d711c3e1d19", - "parentUUID": "90be95ff-ab0f-4819-bc32-f2020a047b86", + "uuid": "00aade99-3660-4f6b-9006-3debeb588bef", + "parentUUID": "3d9f61ba-9faa-47ba-92f9-d3bd903265cb", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "9b416b49-c41b-4892-8740-fb8f8aaa43fa", - "30f2fb90-91a3-4176-833e-1d711c3e1d19" + "3f4f5818-36e1-478e-bcc1-fd6c7521e21f", + "00aade99-3660-4f6b-9006-3debeb588bef" ], "failures": [ - "0b76d622-a536-46f8-aa1e-002ea19c8764" + "bc9e466c-892a-417a-9221-a839d4caacf0" ], "pending": [ - "52d5f8b5-daa5-4dea-84ea-c3629de5b409" + "09978a9f-a359-43de-941d-e3b5a5db796c" ], "skipped": [], "duration": 1028, diff --git a/tests/data/result/trx-xunit-junit.xml b/tests/data/result/trx-xunit-junit.xml new file mode 100644 index 0000000..f55bb32 --- /dev/null +++ b/tests/data/result/trx-xunit-junit.xml @@ -0,0 +1,57 @@ + + + + + at XUnitSample.DataDriven.Failing_test() in C:\projects\trx2junit\samples\XUnitSample\DataDriven.cs:line 26 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr) + + + + + + + at XUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\projects\trx2junit\samples\XUnitSample\DataDriven.cs:line 17 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr) + + + + + + + + at XUnitSample.MemberData.Failing_test() in C:\projects\trx2junit\samples\XUnitSample\MemberData.cs:line 32 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr) + + + + + + + at XUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\projects\trx2junit\samples\XUnitSample\MemberData.cs:line 23 + at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1) + at System.Reflection.MethodBaseInvoker.InvokeWithOneArg(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) + + + + + + + + at XUnitSample.SimpleTests.Failing_test() in C:\projects\trx2junit\samples\XUnitSample\SimpleTests.cs:line 20 + at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor) + at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr) + + + + + + Ignoring for testing ;-) + + + + + + \ No newline at end of file diff --git a/tests/data/result/trx-xunit-mochawesome.json b/tests/data/result/trx-xunit-mochawesome.json index 927f2d4..a761452 100644 --- a/tests/data/result/trx-xunit-mochawesome.json +++ b/tests/data/result/trx-xunit-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "7e822901-08f7-4f82-a503-01930c795cd1", + "uuid": "80cef2da-f2d9-4635-aeed-5158cdefdd80", "title": "", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "title": "XUnitSample.DataDriven", "file": "", "beforeHooks": [], @@ -47,8 +47,8 @@ "estack": "at XUnitSample.DataDriven.Failing_test() in C:\\projects\\trx2junit\\samples\\XUnitSample\\DataDriven.cs:line 26\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)", "diff": null }, - "uuid": "f31ef260-8001-4aae-85de-943cb7051541", - "parentUUID": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "7497d3ab-4dd1-4778-ad3b-be3f188d2863", + "parentUUID": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "isHook": false, "skipped": false }, @@ -64,8 +64,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3c3ea49f-3e76-415f-b5ca-37c72e63fadf", - "parentUUID": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "642e5da2-a1c8-409b-9644-1d4756eb2f83", + "parentUUID": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "isHook": false, "skipped": false }, @@ -81,8 +81,8 @@ "context": null, "code": null, "err": {}, - "uuid": "dcf346e6-7d68-4cbf-8f6b-13497e28d61c", - "parentUUID": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "3e04ed68-7249-4ec8-9069-63fab45bfba2", + "parentUUID": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "isHook": false, "skipped": false }, @@ -102,8 +102,8 @@ "estack": "at XUnitSample.DataDriven.Two_pass_one_fails(Int32 arg) in C:\\projects\\trx2junit\\samples\\XUnitSample\\DataDriven.cs:line 17\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr)", "diff": null }, - "uuid": "07675389-6a24-4387-92ee-50ae4ea00e2f", - "parentUUID": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "ab8b2a2e-1170-43bd-b9fd-ec4afd29ab55", + "parentUUID": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "isHook": false, "skipped": false }, @@ -119,21 +119,21 @@ "context": null, "code": null, "err": {}, - "uuid": "12ebda0a-1aee-4643-8ddc-7ca349b3f5b7", - "parentUUID": "0d4f493c-2f42-46ae-9393-9d41b37eb505", + "uuid": "47d6f890-9409-468e-b473-590221951bed", + "parentUUID": "6b08db60-45b2-464a-bb39-8d2c3939fd5e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3c3ea49f-3e76-415f-b5ca-37c72e63fadf", - "dcf346e6-7d68-4cbf-8f6b-13497e28d61c", - "12ebda0a-1aee-4643-8ddc-7ca349b3f5b7" + "642e5da2-a1c8-409b-9644-1d4756eb2f83", + "3e04ed68-7249-4ec8-9069-63fab45bfba2", + "47d6f890-9409-468e-b473-590221951bed" ], "failures": [ - "f31ef260-8001-4aae-85de-943cb7051541", - "07675389-6a24-4387-92ee-50ae4ea00e2f" + "7497d3ab-4dd1-4778-ad3b-be3f188d2863", + "ab8b2a2e-1170-43bd-b9fd-ec4afd29ab55" ], "pending": [], "skipped": [], @@ -143,7 +143,7 @@ "_timeout": 10000 }, { - "uuid": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "726f53e5-0225-469b-90a6-eb457bb714d7", "title": "XUnitSample.MemberData", "file": "", "beforeHooks": [], @@ -165,8 +165,8 @@ "estack": "at XUnitSample.MemberData.Failing_test() in C:\\projects\\trx2junit\\samples\\XUnitSample\\MemberData.cs:line 32\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)", "diff": null }, - "uuid": "dfc7b1f5-03f6-4e98-96d1-57d8808b6741", - "parentUUID": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "f6b61709-5106-4273-90b5-e31fd116c196", + "parentUUID": "726f53e5-0225-469b-90a6-eb457bb714d7", "isHook": false, "skipped": false }, @@ -182,8 +182,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d2ad0036-3412-4283-a9e2-bd83d9610412", - "parentUUID": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "33f7ece7-a649-4841-bda5-cad4177c8eca", + "parentUUID": "726f53e5-0225-469b-90a6-eb457bb714d7", "isHook": false, "skipped": false }, @@ -199,8 +199,8 @@ "context": null, "code": null, "err": {}, - "uuid": "2f8e2d64-d0b7-4352-be02-a111b743c336", - "parentUUID": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "014452ab-2c54-462c-b2fa-ca07c254e667", + "parentUUID": "726f53e5-0225-469b-90a6-eb457bb714d7", "isHook": false, "skipped": false }, @@ -220,8 +220,8 @@ "estack": "at XUnitSample.MemberData.Two_pass_one_fails(Object obj) in C:\\projects\\trx2junit\\samples\\XUnitSample\\MemberData.cs:line 23\n at InvokeStub_MemberData.Two_pass_one_fails(Object, Span`1)\n at System.Reflection.MethodBaseInvoker.InvokeWithOneArg(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)", "diff": null }, - "uuid": "feeaff5c-a373-49ce-ab56-0ae9c1675c89", - "parentUUID": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "50eed001-d724-4641-b0b7-cd87e5245ebc", + "parentUUID": "726f53e5-0225-469b-90a6-eb457bb714d7", "isHook": false, "skipped": false }, @@ -237,21 +237,21 @@ "context": null, "code": null, "err": {}, - "uuid": "2986ea9a-841d-4937-bb65-5d0f72413d20", - "parentUUID": "a2629716-4495-4895-a2d0-122b3910c551", + "uuid": "8936b1bd-ff43-4619-b35b-7415d133bdab", + "parentUUID": "726f53e5-0225-469b-90a6-eb457bb714d7", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "d2ad0036-3412-4283-a9e2-bd83d9610412", - "2f8e2d64-d0b7-4352-be02-a111b743c336", - "2986ea9a-841d-4937-bb65-5d0f72413d20" + "33f7ece7-a649-4841-bda5-cad4177c8eca", + "014452ab-2c54-462c-b2fa-ca07c254e667", + "8936b1bd-ff43-4619-b35b-7415d133bdab" ], "failures": [ - "dfc7b1f5-03f6-4e98-96d1-57d8808b6741", - "feeaff5c-a373-49ce-ab56-0ae9c1675c89" + "f6b61709-5106-4273-90b5-e31fd116c196", + "50eed001-d724-4641-b0b7-cd87e5245ebc" ], "pending": [], "skipped": [], @@ -261,7 +261,7 @@ "_timeout": 10000 }, { - "uuid": "ac061bc4-5f64-474e-89d2-7e5656fcfb75", + "uuid": "f507c77d-da04-4ba0-b7ca-68dafc8092d1", "title": "XUnitSample.SimpleTests", "file": "", "beforeHooks": [], @@ -283,8 +283,8 @@ "estack": "at XUnitSample.SimpleTests.Failing_test() in C:\\projects\\trx2junit\\samples\\XUnitSample\\SimpleTests.cs:line 20\n at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)\n at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)", "diff": null }, - "uuid": "2c9a8d57-5a91-433b-8702-02e1f8473df1", - "parentUUID": "ac061bc4-5f64-474e-89d2-7e5656fcfb75", + "uuid": "4b7490bc-ea3b-45df-83df-fd643e4e7dbe", + "parentUUID": "f507c77d-da04-4ba0-b7ca-68dafc8092d1", "isHook": false, "skipped": false }, @@ -300,8 +300,8 @@ "context": "[\"skipped: Ignoring for testing ;-)\"]", "code": null, "err": {}, - "uuid": "d5b5febe-7cd0-4bdf-a08a-60b7c44ad49d", - "parentUUID": "ac061bc4-5f64-474e-89d2-7e5656fcfb75", + "uuid": "79938fbb-e1ee-4b6a-b70c-2af0e710286b", + "parentUUID": "f507c77d-da04-4ba0-b7ca-68dafc8092d1", "isHook": false, "skipped": false }, @@ -317,8 +317,8 @@ "context": null, "code": null, "err": {}, - "uuid": "8ce97093-67f0-408e-b388-775ba0486527", - "parentUUID": "ac061bc4-5f64-474e-89d2-7e5656fcfb75", + "uuid": "db2388a3-c615-4ebe-8fe4-423e02a78c43", + "parentUUID": "f507c77d-da04-4ba0-b7ca-68dafc8092d1", "isHook": false, "skipped": false }, @@ -334,22 +334,22 @@ "context": null, "code": null, "err": {}, - "uuid": "7dd90bbd-2c82-4fc2-9392-edb8d9a9b826", - "parentUUID": "ac061bc4-5f64-474e-89d2-7e5656fcfb75", + "uuid": "82b1bb3e-94dd-4853-b861-eac7384ef657", + "parentUUID": "f507c77d-da04-4ba0-b7ca-68dafc8092d1", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "8ce97093-67f0-408e-b388-775ba0486527", - "7dd90bbd-2c82-4fc2-9392-edb8d9a9b826" + "db2388a3-c615-4ebe-8fe4-423e02a78c43", + "82b1bb3e-94dd-4853-b861-eac7384ef657" ], "failures": [ - "2c9a8d57-5a91-433b-8702-02e1f8473df1" + "4b7490bc-ea3b-45df-83df-fd643e4e7dbe" ], "pending": [ - "d5b5febe-7cd0-4bdf-a08a-60b7c44ad49d" + "79938fbb-e1ee-4b6a-b70c-2af0e710286b" ], "skipped": [], "duration": 1016, diff --git a/tests/data/result/xunit-qlnet-junit.xml b/tests/data/result/xunit-qlnet-junit.xml new file mode 100644 index 0000000..194c60b --- /dev/null +++ b/tests/data/result/xunit-qlnet-junit.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/xunit-qlnet-mochawesome.json b/tests/data/result/xunit-qlnet-mochawesome.json index 04eb3e4..7f0c326 100644 --- a/tests/data/result/xunit-qlnet-mochawesome.json +++ b/tests/data/result/xunit-qlnet-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "3d4e53d0-5811-4586-8b8a-c90e154d709a", + "uuid": "2bbb422a-af67-41ae-99c3-51527987b213", "title": "C:\\projecrs\\QLNet\\tests\\QLNet.Tests\\bin\\Debug\\net8.0\\QLNet.Tests.dll", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "9be37dd8-26b5-4bba-9766-932e575e84a9", "title": "QLNet.Tests.T_DayCounters", "file": "", "beforeHooks": [], @@ -43,8 +43,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f19eb21b-4757-4705-b217-6619ced98c62", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "4fec5490-3737-4aa2-af6d-ac29a6596121", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -60,8 +60,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4278ee4c-8495-4f45-88e6-7ebbb8f933f9", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "cb36b1ee-4f38-4de1-857c-8e431f185c42", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -77,8 +77,8 @@ "context": null, "code": null, "err": {}, - "uuid": "cda331a3-8461-4cfd-9f9a-53d77d190191", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "a18f37a7-cd53-402d-8d3a-3471128b0fb3", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -94,8 +94,8 @@ "context": null, "code": null, "err": {}, - "uuid": "804967ee-7804-473f-b33f-57607ba5c7e6", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "d7fe064c-6673-49c1-b239-97c4b4c34663", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -111,8 +111,8 @@ "context": null, "code": null, "err": {}, - "uuid": "fa9143df-687e-4217-a0a9-b76642c9b8bd", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "5d7af9e9-6a1d-43a3-824a-ae06de321e23", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -128,8 +128,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5a8d2ce3-06d1-4f6c-a9f5-b79d92e3e34c", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "118e5b08-9ff7-47d8-922b-d16b08660d50", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -145,8 +145,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5eb0f3c8-c075-4f15-9d64-8de2524b801a", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "253f35e1-b83f-4e64-ba1f-1960f4f0d934", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -162,8 +162,8 @@ "context": null, "code": null, "err": {}, - "uuid": "9d3b19a1-f8f2-4076-8f1d-0b661af53bdb", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "b84ba769-6006-45c8-9efd-80955c357f24", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -179,8 +179,8 @@ "context": null, "code": null, "err": {}, - "uuid": "63b65a59-d608-49f8-b32e-d5153c807cfb", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "902be8e9-2564-46b2-a6b9-5c532c242e5c", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -196,8 +196,8 @@ "context": null, "code": null, "err": {}, - "uuid": "eef8e8b6-c1ba-46dc-880e-ff4f780bdb53", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "c3284376-1c2d-46f2-99f1-dbfaa3d12ba3", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -213,8 +213,8 @@ "context": null, "code": null, "err": {}, - "uuid": "906e6299-e1ce-4fcf-8f88-64aef2f5b18d", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "67ba1668-ee10-40b7-8755-76687b95d57e", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -230,8 +230,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a152def0-5898-4801-8579-7017573bba68", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "fca4725b-4f81-4f31-b0bd-792da031c978", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -247,8 +247,8 @@ "context": null, "code": null, "err": {}, - "uuid": "bb213cd1-d163-4c89-be9d-c63107f61316", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "5a1e49b7-7bfd-4c8f-b596-49cc663d7fac", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -264,8 +264,8 @@ "context": null, "code": null, "err": {}, - "uuid": "eb1ca5b7-34ee-4a0d-b787-542c147cc4ec", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "00de704e-6eda-4b98-88a2-1f8bf4d4427e", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -281,8 +281,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ddf52a10-27e5-4062-9aa7-bc6fcfadcc08", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "68c8099a-0f1d-44cc-98da-0d8eb62d4db7", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -298,8 +298,8 @@ "context": null, "code": null, "err": {}, - "uuid": "3f851158-040e-4196-95ef-a5300954bebf", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "13043c7b-8aac-4d0d-b30b-28886ca5a60b", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -315,8 +315,8 @@ "context": null, "code": null, "err": {}, - "uuid": "838712ab-6e6d-49fe-9a97-1e181ddcd84d", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "349193a9-30a5-4cb7-b003-41952f8f3dd0", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -332,8 +332,8 @@ "context": null, "code": null, "err": {}, - "uuid": "12ad1602-88be-4350-a1b9-60791ba293c3", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "9ec14710-f887-4fc4-8a8d-eef5e1ad5e07", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -349,8 +349,8 @@ "context": null, "code": null, "err": {}, - "uuid": "78971254-a3cf-4355-b2c6-1adace8d36bd", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "76f3895c-5e3c-44a5-8b1e-2d6744198d15", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -366,8 +366,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ebb4ae55-91ee-48be-a960-26ddd5f17e99", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "0116a6b6-ae1c-41db-8ab9-988e46dd8342", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -383,8 +383,8 @@ "context": null, "code": null, "err": {}, - "uuid": "d9774f5c-2c48-4b36-b6c4-455d1a01d9b2", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "2cc75f2a-4acf-450c-844a-3901f394bc9d", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -400,8 +400,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a347acce-5eb2-46c4-800b-d2acad5c94c3", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "ccc0c9a9-df94-47fb-9cb9-cc315657bbce", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -417,8 +417,8 @@ "context": null, "code": null, "err": {}, - "uuid": "14ceeae8-0663-43ca-a422-bb2cfdaa43a5", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "fdb0117d-3fca-4364-a5ab-357357199f5f", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -434,8 +434,8 @@ "context": null, "code": null, "err": {}, - "uuid": "baeb9fdd-e10d-4f9d-9fd1-9833cacba5b5", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "150eb2c5-28df-4fd1-8152-f90566d287d1", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false }, @@ -451,39 +451,39 @@ "context": null, "code": null, "err": {}, - "uuid": "60142a5b-96c7-4e67-b4c4-061a910e4bdf", - "parentUUID": "16f9d2c4-6bb7-4434-9cb6-e96a8cd014e1", + "uuid": "7a0b52e1-d139-4cba-a559-37c4189f6d9b", + "parentUUID": "9be37dd8-26b5-4bba-9766-932e575e84a9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "f19eb21b-4757-4705-b217-6619ced98c62", - "4278ee4c-8495-4f45-88e6-7ebbb8f933f9", - "cda331a3-8461-4cfd-9f9a-53d77d190191", - "804967ee-7804-473f-b33f-57607ba5c7e6", - "fa9143df-687e-4217-a0a9-b76642c9b8bd", - "5a8d2ce3-06d1-4f6c-a9f5-b79d92e3e34c", - "5eb0f3c8-c075-4f15-9d64-8de2524b801a", - "9d3b19a1-f8f2-4076-8f1d-0b661af53bdb", - "63b65a59-d608-49f8-b32e-d5153c807cfb", - "eef8e8b6-c1ba-46dc-880e-ff4f780bdb53", - "906e6299-e1ce-4fcf-8f88-64aef2f5b18d", - "a152def0-5898-4801-8579-7017573bba68", - "bb213cd1-d163-4c89-be9d-c63107f61316", - "eb1ca5b7-34ee-4a0d-b787-542c147cc4ec", - "ddf52a10-27e5-4062-9aa7-bc6fcfadcc08", - "3f851158-040e-4196-95ef-a5300954bebf", - "838712ab-6e6d-49fe-9a97-1e181ddcd84d", - "12ad1602-88be-4350-a1b9-60791ba293c3", - "78971254-a3cf-4355-b2c6-1adace8d36bd", - "ebb4ae55-91ee-48be-a960-26ddd5f17e99", - "d9774f5c-2c48-4b36-b6c4-455d1a01d9b2", - "a347acce-5eb2-46c4-800b-d2acad5c94c3", - "14ceeae8-0663-43ca-a422-bb2cfdaa43a5", - "baeb9fdd-e10d-4f9d-9fd1-9833cacba5b5", - "60142a5b-96c7-4e67-b4c4-061a910e4bdf" + "4fec5490-3737-4aa2-af6d-ac29a6596121", + "cb36b1ee-4f38-4de1-857c-8e431f185c42", + "a18f37a7-cd53-402d-8d3a-3471128b0fb3", + "d7fe064c-6673-49c1-b239-97c4b4c34663", + "5d7af9e9-6a1d-43a3-824a-ae06de321e23", + "118e5b08-9ff7-47d8-922b-d16b08660d50", + "253f35e1-b83f-4e64-ba1f-1960f4f0d934", + "b84ba769-6006-45c8-9efd-80955c357f24", + "902be8e9-2564-46b2-a6b9-5c532c242e5c", + "c3284376-1c2d-46f2-99f1-dbfaa3d12ba3", + "67ba1668-ee10-40b7-8755-76687b95d57e", + "fca4725b-4f81-4f31-b0bd-792da031c978", + "5a1e49b7-7bfd-4c8f-b596-49cc663d7fac", + "00de704e-6eda-4b98-88a2-1f8bf4d4427e", + "68c8099a-0f1d-44cc-98da-0d8eb62d4db7", + "13043c7b-8aac-4d0d-b30b-28886ca5a60b", + "349193a9-30a5-4cb7-b003-41952f8f3dd0", + "9ec14710-f887-4fc4-8a8d-eef5e1ad5e07", + "76f3895c-5e3c-44a5-8b1e-2d6744198d15", + "0116a6b6-ae1c-41db-8ab9-988e46dd8342", + "2cc75f2a-4acf-450c-844a-3901f394bc9d", + "ccc0c9a9-df94-47fb-9cb9-cc315657bbce", + "fdb0117d-3fca-4364-a5ab-357357199f5f", + "150eb2c5-28df-4fd1-8152-f90566d287d1", + "7a0b52e1-d139-4cba-a559-37c4189f6d9b" ], "failures": [], "pending": [], @@ -494,7 +494,7 @@ "_timeout": 10000 }, { - "uuid": "6e3e9943-8f48-47e1-8408-125b67a2fedd", + "uuid": "d7c4bad6-c38f-4698-8a57-06efbcc29a67", "title": "T_CapFlooredCoupon", "file": "", "beforeHooks": [], @@ -512,8 +512,8 @@ "context": null, "code": null, "err": {}, - "uuid": "b8e3de6b-75f3-42c7-9c36-85f9a92894a4", - "parentUUID": "6e3e9943-8f48-47e1-8408-125b67a2fedd", + "uuid": "9bbb7019-c49c-47e1-9305-aa9f7e1e9edb", + "parentUUID": "d7c4bad6-c38f-4698-8a57-06efbcc29a67", "isHook": false, "skipped": false }, @@ -529,16 +529,16 @@ "context": null, "code": null, "err": {}, - "uuid": "8c7b741e-28a1-423d-9384-49b49b72eb3e", - "parentUUID": "6e3e9943-8f48-47e1-8408-125b67a2fedd", + "uuid": "412d4944-c783-47bc-bf0d-81afb90be3be", + "parentUUID": "d7c4bad6-c38f-4698-8a57-06efbcc29a67", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "b8e3de6b-75f3-42c7-9c36-85f9a92894a4", - "8c7b741e-28a1-423d-9384-49b49b72eb3e" + "9bbb7019-c49c-47e1-9305-aa9f7e1e9edb", + "412d4944-c783-47bc-bf0d-81afb90be3be" ], "failures": [], "pending": [], @@ -549,7 +549,7 @@ "_timeout": 10000 }, { - "uuid": "38ed00b1-75d6-4ebe-8eb4-5ac9ea8bf3d0", + "uuid": "7b0bb6e5-6c4f-4882-9576-81a8a5e489fc", "title": "T_CashFlows", "file": "", "beforeHooks": [], @@ -567,8 +567,8 @@ "context": null, "code": null, "err": {}, - "uuid": "645368e2-1355-467c-bf6c-379eb915235a", - "parentUUID": "38ed00b1-75d6-4ebe-8eb4-5ac9ea8bf3d0", + "uuid": "44e45cd6-1784-44e3-9458-f7a3a5fe5a65", + "parentUUID": "7b0bb6e5-6c4f-4882-9576-81a8a5e489fc", "isHook": false, "skipped": false }, @@ -584,8 +584,8 @@ "context": null, "code": null, "err": {}, - "uuid": "6db1b759-1605-44f6-b72f-78cfe83ddbc0", - "parentUUID": "38ed00b1-75d6-4ebe-8eb4-5ac9ea8bf3d0", + "uuid": "c6a0f1a3-dbd4-4245-b430-25498eeb9667", + "parentUUID": "7b0bb6e5-6c4f-4882-9576-81a8a5e489fc", "isHook": false, "skipped": false }, @@ -601,8 +601,8 @@ "context": null, "code": null, "err": {}, - "uuid": "dd0ce1ed-524e-4382-a5b2-2079608c04ed", - "parentUUID": "38ed00b1-75d6-4ebe-8eb4-5ac9ea8bf3d0", + "uuid": "7d4c018a-7f47-48e0-ab9b-e9602e516e4c", + "parentUUID": "7b0bb6e5-6c4f-4882-9576-81a8a5e489fc", "isHook": false, "skipped": false }, @@ -618,18 +618,18 @@ "context": null, "code": null, "err": {}, - "uuid": "3ce32231-f76e-4540-ba42-720f5f4fe373", - "parentUUID": "38ed00b1-75d6-4ebe-8eb4-5ac9ea8bf3d0", + "uuid": "6c304acf-cb71-4fa0-8e53-390c0dbfddae", + "parentUUID": "7b0bb6e5-6c4f-4882-9576-81a8a5e489fc", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "645368e2-1355-467c-bf6c-379eb915235a", - "6db1b759-1605-44f6-b72f-78cfe83ddbc0", - "dd0ce1ed-524e-4382-a5b2-2079608c04ed", - "3ce32231-f76e-4540-ba42-720f5f4fe373" + "44e45cd6-1784-44e3-9458-f7a3a5fe5a65", + "c6a0f1a3-dbd4-4245-b430-25498eeb9667", + "7d4c018a-7f47-48e0-ab9b-e9602e516e4c", + "6c304acf-cb71-4fa0-8e53-390c0dbfddae" ], "failures": [], "pending": [], @@ -640,7 +640,7 @@ "_timeout": 10000 }, { - "uuid": "01e385ac-4031-4b53-a9c0-8f10c6c823cc", + "uuid": "1e63b7f5-cd77-4a59-89a3-58557dc1ff5e", "title": "T_CliquetOption", "file": "", "beforeHooks": [], @@ -658,8 +658,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ff2e3e9e-f7dd-49f9-a973-c99b47886d4a", - "parentUUID": "01e385ac-4031-4b53-a9c0-8f10c6c823cc", + "uuid": "70603917-4411-4e2e-a4e9-2c611d4b7e27", + "parentUUID": "1e63b7f5-cd77-4a59-89a3-58557dc1ff5e", "isHook": false, "skipped": false }, @@ -675,8 +675,8 @@ "context": null, "code": null, "err": {}, - "uuid": "316aee22-9201-42b6-8f3a-61f406f8dfe6", - "parentUUID": "01e385ac-4031-4b53-a9c0-8f10c6c823cc", + "uuid": "d8f8f764-3302-4d18-8dab-e4b58575eb21", + "parentUUID": "1e63b7f5-cd77-4a59-89a3-58557dc1ff5e", "isHook": false, "skipped": false }, @@ -692,17 +692,17 @@ "context": null, "code": null, "err": {}, - "uuid": "0a58b969-2bbe-43dc-b1f0-e329792d0942", - "parentUUID": "01e385ac-4031-4b53-a9c0-8f10c6c823cc", + "uuid": "744348c6-3a28-48b5-8a12-f8f822d2b2c1", + "parentUUID": "1e63b7f5-cd77-4a59-89a3-58557dc1ff5e", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "ff2e3e9e-f7dd-49f9-a973-c99b47886d4a", - "316aee22-9201-42b6-8f3a-61f406f8dfe6", - "0a58b969-2bbe-43dc-b1f0-e329792d0942" + "70603917-4411-4e2e-a4e9-2c611d4b7e27", + "d8f8f764-3302-4d18-8dab-e4b58575eb21", + "744348c6-3a28-48b5-8a12-f8f822d2b2c1" ], "failures": [], "pending": [], @@ -713,7 +713,7 @@ "_timeout": 10000 }, { - "uuid": "b8a23a05-3baa-409f-a216-cc2aaca50616", + "uuid": "2f71ad39-3886-47f9-bc54-026dcd5cf169", "title": "T_Cms", "file": "", "beforeHooks": [], @@ -731,8 +731,8 @@ "context": null, "code": null, "err": {}, - "uuid": "33b56d3c-16d3-4ded-8533-bc14ca178865", - "parentUUID": "b8a23a05-3baa-409f-a216-cc2aaca50616", + "uuid": "b25bad28-9aa9-4867-89e6-916ee552369b", + "parentUUID": "2f71ad39-3886-47f9-bc54-026dcd5cf169", "isHook": false, "skipped": false }, @@ -748,8 +748,8 @@ "context": null, "code": null, "err": {}, - "uuid": "95894a3a-e043-4fb8-9d02-14569316fb18", - "parentUUID": "b8a23a05-3baa-409f-a216-cc2aaca50616", + "uuid": "af352eff-ca1f-41b5-9708-c323eb42db01", + "parentUUID": "2f71ad39-3886-47f9-bc54-026dcd5cf169", "isHook": false, "skipped": false }, @@ -765,17 +765,17 @@ "context": null, "code": null, "err": {}, - "uuid": "cba73d96-3196-48d5-adb7-27353c21fd0a", - "parentUUID": "b8a23a05-3baa-409f-a216-cc2aaca50616", + "uuid": "2a4ef92b-b73d-4373-85b7-980725be3e22", + "parentUUID": "2f71ad39-3886-47f9-bc54-026dcd5cf169", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "33b56d3c-16d3-4ded-8533-bc14ca178865", - "95894a3a-e043-4fb8-9d02-14569316fb18", - "cba73d96-3196-48d5-adb7-27353c21fd0a" + "b25bad28-9aa9-4867-89e6-916ee552369b", + "af352eff-ca1f-41b5-9708-c323eb42db01", + "2a4ef92b-b73d-4373-85b7-980725be3e22" ], "failures": [], "pending": [], @@ -786,7 +786,7 @@ "_timeout": 10000 }, { - "uuid": "0274b7fb-a735-4ec7-a0f9-a8938bd06f29", + "uuid": "c6465af0-fe8c-46d5-8c36-9bbe8647da29", "title": "T_ConvertibleBond", "file": "", "beforeHooks": [], @@ -804,8 +804,8 @@ "context": null, "code": null, "err": {}, - "uuid": "fa09052b-bb74-4e0b-ad4f-aa1a731952d1", - "parentUUID": "0274b7fb-a735-4ec7-a0f9-a8938bd06f29", + "uuid": "c18043ca-4181-497e-83a2-f914c45f817e", + "parentUUID": "c6465af0-fe8c-46d5-8c36-9bbe8647da29", "isHook": false, "skipped": false }, @@ -821,8 +821,8 @@ "context": null, "code": null, "err": {}, - "uuid": "fd537c21-ed46-4b31-ab11-8aaad0b77787", - "parentUUID": "0274b7fb-a735-4ec7-a0f9-a8938bd06f29", + "uuid": "1f651fa2-e7ef-4224-bd0c-1d0d9aea79dc", + "parentUUID": "c6465af0-fe8c-46d5-8c36-9bbe8647da29", "isHook": false, "skipped": false }, @@ -838,17 +838,17 @@ "context": null, "code": null, "err": {}, - "uuid": "3183f35d-eae5-4402-a548-dfcd967e99be", - "parentUUID": "0274b7fb-a735-4ec7-a0f9-a8938bd06f29", + "uuid": "760f9cbd-2976-4dca-a59f-67e97bca1ef2", + "parentUUID": "c6465af0-fe8c-46d5-8c36-9bbe8647da29", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "fa09052b-bb74-4e0b-ad4f-aa1a731952d1", - "fd537c21-ed46-4b31-ab11-8aaad0b77787", - "3183f35d-eae5-4402-a548-dfcd967e99be" + "c18043ca-4181-497e-83a2-f914c45f817e", + "1f651fa2-e7ef-4224-bd0c-1d0d9aea79dc", + "760f9cbd-2976-4dca-a59f-67e97bca1ef2" ], "failures": [], "pending": [], @@ -859,7 +859,7 @@ "_timeout": 10000 }, { - "uuid": "644230f7-11aa-4d5f-9777-e1b39af29000", + "uuid": "c09638b6-25b3-4745-8c4a-37fcf9588413", "title": "T_CPISwap", "file": "", "beforeHooks": [], @@ -877,8 +877,8 @@ "context": null, "code": null, "err": {}, - "uuid": "eb15de2e-1bb9-485b-a265-5e772ad52560", - "parentUUID": "644230f7-11aa-4d5f-9777-e1b39af29000", + "uuid": "ff0c8e02-6f2e-4271-86e4-9420c5435fd6", + "parentUUID": "c09638b6-25b3-4745-8c4a-37fcf9588413", "isHook": false, "skipped": false }, @@ -894,8 +894,8 @@ "context": null, "code": null, "err": {}, - "uuid": "a1fbe2db-ec7d-4f35-b498-05ac81c850fd", - "parentUUID": "644230f7-11aa-4d5f-9777-e1b39af29000", + "uuid": "b7fd6802-f8aa-4b8d-94b5-99bf234585d4", + "parentUUID": "c09638b6-25b3-4745-8c4a-37fcf9588413", "isHook": false, "skipped": false }, @@ -911,17 +911,17 @@ "context": null, "code": null, "err": {}, - "uuid": "97160bc3-f6a9-4ecf-ba1c-0b3d290c600a", - "parentUUID": "644230f7-11aa-4d5f-9777-e1b39af29000", + "uuid": "c37c086f-80c1-43ce-a952-a15f7aa56aea", + "parentUUID": "c09638b6-25b3-4745-8c4a-37fcf9588413", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "eb15de2e-1bb9-485b-a265-5e772ad52560", - "a1fbe2db-ec7d-4f35-b498-05ac81c850fd", - "97160bc3-f6a9-4ecf-ba1c-0b3d290c600a" + "ff0c8e02-6f2e-4271-86e4-9420c5435fd6", + "b7fd6802-f8aa-4b8d-94b5-99bf234585d4", + "c37c086f-80c1-43ce-a952-a15f7aa56aea" ], "failures": [], "pending": [], @@ -932,7 +932,7 @@ "_timeout": 10000 }, { - "uuid": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "e6c06f12-174c-43e0-9dec-46159f8160aa", "title": "T_CreditDefaultSwap", "file": "", "beforeHooks": [], @@ -950,8 +950,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0ad8a966-93b0-439e-85e1-6bb08701af36", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "84a4c5f3-34cf-4ec9-8a60-2441564ed710", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false }, @@ -967,8 +967,8 @@ "context": null, "code": null, "err": {}, - "uuid": "61a064a7-632d-4bf4-9259-7939d575f2df", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "12fca5f8-cc9c-4cd8-8418-d8644bc1ecaa", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false }, @@ -984,8 +984,8 @@ "context": null, "code": null, "err": {}, - "uuid": "ad5abb42-fee9-4583-b74c-c1a6e50557d1", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "6e70da08-9083-479e-8431-e658cd7c43c7", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false }, @@ -1001,8 +1001,8 @@ "context": null, "code": null, "err": {}, - "uuid": "c4bd2837-9508-4313-a722-659f5f88a8bc", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "d54903fc-e41a-4516-889d-6dc7ba345204", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false }, @@ -1018,8 +1018,8 @@ "context": null, "code": null, "err": {}, - "uuid": "40bb39eb-94c8-4704-926b-a5320942d77f", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "59bb2e00-2c50-4145-ab0c-27b44a6e630c", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false }, @@ -1035,20 +1035,20 @@ "context": null, "code": null, "err": {}, - "uuid": "e1868b5b-e18d-49a6-b85d-07a59bdc66eb", - "parentUUID": "f47f41ee-4adb-43e5-9133-1265de0f742e", + "uuid": "562eac8f-32dc-4934-80ec-02beea073e12", + "parentUUID": "e6c06f12-174c-43e0-9dec-46159f8160aa", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0ad8a966-93b0-439e-85e1-6bb08701af36", - "61a064a7-632d-4bf4-9259-7939d575f2df", - "ad5abb42-fee9-4583-b74c-c1a6e50557d1", - "c4bd2837-9508-4313-a722-659f5f88a8bc", - "40bb39eb-94c8-4704-926b-a5320942d77f", - "e1868b5b-e18d-49a6-b85d-07a59bdc66eb" + "84a4c5f3-34cf-4ec9-8a60-2441564ed710", + "12fca5f8-cc9c-4cd8-8418-d8644bc1ecaa", + "6e70da08-9083-479e-8431-e658cd7c43c7", + "d54903fc-e41a-4516-889d-6dc7ba345204", + "59bb2e00-2c50-4145-ab0c-27b44a6e630c", + "562eac8f-32dc-4934-80ec-02beea073e12" ], "failures": [], "pending": [], diff --git a/tests/data/result/xunit-sample-junit.xml b/tests/data/result/xunit-sample-junit.xml new file mode 100644 index 0000000..7b71ed8 --- /dev/null +++ b/tests/data/result/xunit-sample-junit.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/data/result/xunit-sample-mochawesome.json b/tests/data/result/xunit-sample-mochawesome.json index aa8d926..e449a07 100644 --- a/tests/data/result/xunit-sample-mochawesome.json +++ b/tests/data/result/xunit-sample-mochawesome.json @@ -16,7 +16,7 @@ }, "results": [ { - "uuid": "cef4fba3-aeb9-4f90-b6c3-98850578d689", + "uuid": "28838fd3-75ef-48f5-b3b9-ae4ff932ba6b", "title": "C:\\Users\\calliopeuser\\projects\\LiveResults\\MWM2.LiveResults.Tests\\bin\\Debug\\MWM2.LiveResults.Tests.dll", "fullFile": "", "file": "", @@ -25,7 +25,7 @@ "tests": [], "suites": [ { - "uuid": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "title": "MWM2.LiveResults.Tests.Schema.Export.OpenQuestionExportColumnTests", "file": "", "beforeHooks": [], @@ -43,8 +43,8 @@ "context": null, "code": null, "err": {}, - "uuid": "821c9d66-0a77-4b13-9100-82c931953621", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "a0e3155c-14f4-4792-8c49-b5adc4750f22", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -60,8 +60,8 @@ "context": null, "code": null, "err": {}, - "uuid": "77934bea-d066-46f7-b762-600084cfdbb7", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "aae3738c-fa7a-46d5-bbd7-b0cf110c5336", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -77,8 +77,8 @@ "context": null, "code": null, "err": {}, - "uuid": "bd145ea4-9c38-4abd-97da-580e5ea494d2", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "f752873d-b283-4074-a9a6-341bf1c219d8", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -94,8 +94,8 @@ "context": null, "code": null, "err": {}, - "uuid": "1fdb01fe-b113-4ba0-9b10-dd8ef94b7871", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "ebc64e0e-7273-46c3-9bd4-62fd5e6344f6", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -111,8 +111,8 @@ "context": null, "code": null, "err": {}, - "uuid": "fc90dc53-00bb-42be-b001-15d1e1bb7024", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "ee6a8358-621a-422d-9bec-ec56df9d2f69", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -128,8 +128,8 @@ "context": null, "code": null, "err": {}, - "uuid": "6cbce57a-4adb-49b5-a3a0-7f21c3372895", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "a8e97bd7-97e1-4a21-a3bb-6e11be54a924", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false }, @@ -145,21 +145,21 @@ "context": null, "code": null, "err": {}, - "uuid": "1f0a1b93-fd9b-4c12-a3d1-538e1f71065d", - "parentUUID": "0d494866-a162-4338-9753-cf530187a3c5", + "uuid": "e74e83a7-c176-4db9-813c-bb8322622678", + "parentUUID": "a60486de-f7ca-473e-bbb9-eb1fda8f6aa7", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "821c9d66-0a77-4b13-9100-82c931953621", - "77934bea-d066-46f7-b762-600084cfdbb7", - "bd145ea4-9c38-4abd-97da-580e5ea494d2", - "1fdb01fe-b113-4ba0-9b10-dd8ef94b7871", - "fc90dc53-00bb-42be-b001-15d1e1bb7024", - "6cbce57a-4adb-49b5-a3a0-7f21c3372895", - "1f0a1b93-fd9b-4c12-a3d1-538e1f71065d" + "a0e3155c-14f4-4792-8c49-b5adc4750f22", + "aae3738c-fa7a-46d5-bbd7-b0cf110c5336", + "f752873d-b283-4074-a9a6-341bf1c219d8", + "ebc64e0e-7273-46c3-9bd4-62fd5e6344f6", + "ee6a8358-621a-422d-9bec-ec56df9d2f69", + "a8e97bd7-97e1-4a21-a3bb-6e11be54a924", + "e74e83a7-c176-4db9-813c-bb8322622678" ], "failures": [], "pending": [], @@ -170,7 +170,7 @@ "_timeout": 10000 }, { - "uuid": "7ee48fbb-4a7f-407e-8abb-af3d8c982b46", + "uuid": "3d9480fb-5fd3-4210-9530-f761d8c5b74b", "title": "MWM2.LiveResults.Tests.Schema.Export.PointDistributionExportTests", "file": "", "beforeHooks": [], @@ -188,8 +188,8 @@ "context": null, "code": null, "err": {}, - "uuid": "0c2da8fb-f8d8-4d03-8fee-2fe9038a4163", - "parentUUID": "7ee48fbb-4a7f-407e-8abb-af3d8c982b46", + "uuid": "fe89133f-0ee1-460f-b1e0-38157786e9d1", + "parentUUID": "3d9480fb-5fd3-4210-9530-f761d8c5b74b", "isHook": false, "skipped": false }, @@ -205,8 +205,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f6f9c0df-6676-417a-9723-feec7aed53be", - "parentUUID": "7ee48fbb-4a7f-407e-8abb-af3d8c982b46", + "uuid": "96f82167-acac-461c-9fbf-8f2d23a8fc3d", + "parentUUID": "3d9480fb-5fd3-4210-9530-f761d8c5b74b", "isHook": false, "skipped": false }, @@ -222,8 +222,8 @@ "context": null, "code": null, "err": {}, - "uuid": "5cbcfa58-eb72-4f9b-9a81-e91825458746", - "parentUUID": "7ee48fbb-4a7f-407e-8abb-af3d8c982b46", + "uuid": "bd9f4ba7-c055-4b2a-ad48-2636d626670a", + "parentUUID": "3d9480fb-5fd3-4210-9530-f761d8c5b74b", "isHook": false, "skipped": false }, @@ -239,18 +239,18 @@ "context": null, "code": null, "err": {}, - "uuid": "ffe5d081-6ad6-4ee8-a685-b2eb2db4bdb0", - "parentUUID": "7ee48fbb-4a7f-407e-8abb-af3d8c982b46", + "uuid": "498fd1e0-ca8e-4c43-a55f-ea270264c1b6", + "parentUUID": "3d9480fb-5fd3-4210-9530-f761d8c5b74b", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0c2da8fb-f8d8-4d03-8fee-2fe9038a4163", - "f6f9c0df-6676-417a-9723-feec7aed53be", - "5cbcfa58-eb72-4f9b-9a81-e91825458746", - "ffe5d081-6ad6-4ee8-a685-b2eb2db4bdb0" + "fe89133f-0ee1-460f-b1e0-38157786e9d1", + "96f82167-acac-461c-9fbf-8f2d23a8fc3d", + "bd9f4ba7-c055-4b2a-ad48-2636d626670a", + "498fd1e0-ca8e-4c43-a55f-ea270264c1b6" ], "failures": [], "pending": [], @@ -261,7 +261,7 @@ "_timeout": 10000 }, { - "uuid": "951a4255-41a1-45c9-84b3-9cd67d1e4e8a", + "uuid": "4f446dce-dc62-4fb5-9732-63a634dcbf66", "title": "MWM2.LiveResults.Tests.Schema.Export.RankingQuestionExportColumnTests", "file": "", "beforeHooks": [], @@ -279,8 +279,8 @@ "context": null, "code": null, "err": {}, - "uuid": "4c988829-e35d-4b37-9133-59e6f75b2a67", - "parentUUID": "951a4255-41a1-45c9-84b3-9cd67d1e4e8a", + "uuid": "95ffd921-5f62-435b-ae35-f2de664c614e", + "parentUUID": "4f446dce-dc62-4fb5-9732-63a634dcbf66", "isHook": false, "skipped": false }, @@ -296,8 +296,8 @@ "context": null, "code": null, "err": {}, - "uuid": "261be2a0-d2c9-4cd3-8e1c-52a03da37061", - "parentUUID": "951a4255-41a1-45c9-84b3-9cd67d1e4e8a", + "uuid": "82660017-803c-4c03-924a-16a83e061e4c", + "parentUUID": "4f446dce-dc62-4fb5-9732-63a634dcbf66", "isHook": false, "skipped": false }, @@ -313,8 +313,8 @@ "context": null, "code": null, "err": {}, - "uuid": "2c3d00bb-4ae7-4e61-8aa8-a99e767c6fda", - "parentUUID": "951a4255-41a1-45c9-84b3-9cd67d1e4e8a", + "uuid": "a5c74be4-63e8-4f32-92a0-07d466758cc9", + "parentUUID": "4f446dce-dc62-4fb5-9732-63a634dcbf66", "isHook": false, "skipped": false }, @@ -330,18 +330,18 @@ "context": null, "code": null, "err": {}, - "uuid": "393b3919-445d-43b1-9361-544ab6a71373", - "parentUUID": "951a4255-41a1-45c9-84b3-9cd67d1e4e8a", + "uuid": "cfa320ec-d4de-40d0-be30-7e61a65628bc", + "parentUUID": "4f446dce-dc62-4fb5-9732-63a634dcbf66", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "4c988829-e35d-4b37-9133-59e6f75b2a67", - "261be2a0-d2c9-4cd3-8e1c-52a03da37061", - "2c3d00bb-4ae7-4e61-8aa8-a99e767c6fda", - "393b3919-445d-43b1-9361-544ab6a71373" + "95ffd921-5f62-435b-ae35-f2de664c614e", + "82660017-803c-4c03-924a-16a83e061e4c", + "a5c74be4-63e8-4f32-92a0-07d466758cc9", + "cfa320ec-d4de-40d0-be30-7e61a65628bc" ], "failures": [], "pending": [], @@ -352,7 +352,7 @@ "_timeout": 10000 }, { - "uuid": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "title": "MWM2.LiveResults.Tests.Schema.Export.ResultColumnTests", "file": "", "beforeHooks": [], @@ -370,8 +370,8 @@ "context": null, "code": null, "err": {}, - "uuid": "bd016e3e-70b9-47d2-b3bb-e3ead7ff6696", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "a46c9caa-05b5-40e0-abdd-84f797503056", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false }, @@ -387,8 +387,8 @@ "context": null, "code": null, "err": {}, - "uuid": "dc73904b-d1d1-414f-8978-9c2701455f14", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "bbec959a-2222-4d9d-bf8f-743ef2ba765e", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false }, @@ -404,8 +404,8 @@ "context": null, "code": null, "err": {}, - "uuid": "10bf48ce-2106-4ab0-b03a-f4899c6b2eca", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "672fd622-2eea-4666-9025-0cdf6b961aeb", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false }, @@ -421,8 +421,8 @@ "context": null, "code": null, "err": {}, - "uuid": "f3ab294c-26db-49f7-bbb4-4c8132eee1b8", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "cdae0861-8001-4b5b-9403-404ff43b1f1c", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false }, @@ -438,8 +438,8 @@ "context": null, "code": null, "err": {}, - "uuid": "7d04416a-46ac-457c-9be6-5733896e7016", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "fcd1592f-7139-4135-a5ce-f6884bcdfcc2", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false }, @@ -455,20 +455,20 @@ "context": null, "code": null, "err": {}, - "uuid": "5e25552f-cd20-45fe-b2b2-52a3af7685d2", - "parentUUID": "826ebe10-d15e-4f56-8927-25aba08e6394", + "uuid": "6efffaca-4272-4e90-a5e0-73cd2be81aa3", + "parentUUID": "b7064d99-449c-4fef-9978-42fdfc53e8d2", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "bd016e3e-70b9-47d2-b3bb-e3ead7ff6696", - "dc73904b-d1d1-414f-8978-9c2701455f14", - "10bf48ce-2106-4ab0-b03a-f4899c6b2eca", - "f3ab294c-26db-49f7-bbb4-4c8132eee1b8", - "7d04416a-46ac-457c-9be6-5733896e7016", - "5e25552f-cd20-45fe-b2b2-52a3af7685d2" + "a46c9caa-05b5-40e0-abdd-84f797503056", + "bbec959a-2222-4d9d-bf8f-743ef2ba765e", + "672fd622-2eea-4666-9025-0cdf6b961aeb", + "cdae0861-8001-4b5b-9403-404ff43b1f1c", + "fcd1592f-7139-4135-a5ce-f6884bcdfcc2", + "6efffaca-4272-4e90-a5e0-73cd2be81aa3" ], "failures": [], "pending": [], diff --git a/tests/data/source/nunit-errors.xml b/tests/data/source/nunit-errors.xml new file mode 100644 index 0000000..0b7bc02 --- /dev/null +++ b/tests/data/source/nunit-errors.xml @@ -0,0 +1,1201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:03:06 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +Start booting... +Canceling all notifications +Checking for servers... +Trying to fetch servers... +List parsed, server count = 4 +Fetched 4 server(s) +FORGET_USER set, user forgotten, now don't forget to remove the flag! + Starting login +SERVER_OVERRIDE_CUSTOM_IP is set. +Found a custom server : localhost +Found target server : custom -> localhost +Creating a new preference 'saved-server-build', should add this to defaults. (empty value) +Starting username login... +Registering master client events... +[LMC] Connecting with username 'testUser1'... +[LMC] REQ InitialLogin response = Success (1.48 s) +[LMC] Login response is compressed B64 (54546 -> 12952 bytes, 23% of original) +[LMC] Push notifications are NOT active +[LMC] Got FCA context from server... +[LMC] Position is 45, and 1 byte was requested, but length is 45. +[LMC] at ByteBuffer.ReadBool () [0x0003f] in /arena/Assets/Scripts/BaseClasses/Utility/ByteBuffer.cs:475 + at SimpleFudbal.Rules.FieldTypes.IntRuleField.DeserializeFromBinary (ByteBuffer bb) [0x00001] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/FieldTypes/IntRuleField.cs:64 + at SimpleFudbal.Rules.RuleSet.DeserializeFromBinary (ByteBuffer bb) [0x0000d] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/RuleSet.cs:100 + at SimpleFudbal.Rules.GameRules..ctor (ByteBuffer bb, SimpleFudbal.Rules.GameRules parentRules) [0x00009] in /arena/Assets/Scripts/BaseClasses/GameData/Rules/NuGameRules.cs:132 + at GameRulesConverterB64.ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x0004f] in /arena/Assets/Scripts/Network/Lambda/Data/Dummies/GameRulesConverterB64.cs:29 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2127 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.SetPropertyValue (Newtonsoft.Json.Serialization.JsonProperty property, Newtonsoft.Json.JsonConverter propertyConverter, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, Newtonsoft.Json.JsonReader reader, System.Object target) [0x00044] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:1032 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject (System.Object newObject, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonObjectContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.String id) [0x00267] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2411 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0015c] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:497 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0006d] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:293 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:193 + at Newtonsoft.Json.Serialization.JsonSerializerProxy.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00008] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerProxy.cs:246 + at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:802 + at Newtonsoft.Json.JsonSerializer.Deserialize[T] (Newtonsoft.Json.JsonReader reader) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:790 + at ConcreteConverter`1[T].ReadJson (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue, Newtonsoft.Json.JsonSerializer serializer) [0x00001] in /arena/Assets/Scripts/Utility/ConcreteConverter.cs:16 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable (Newtonsoft.Json.JsonConverter converter, Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Object existingValue) [0x0004a] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:2127 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList (System.Collections.IList list, Newtonsoft.Json.JsonReader reader, Newtonsoft.Json.Serialization.JsonArrayContract contract, Newtonsoft.Json.Serialization.JsonProperty containerProperty, System.String id) [0x0016f] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:1677 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, System.Object existingValue, System.String id) [0x000dc] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:898 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType, Newtonsoft.Json.Serialization.JsonContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerMember, System.Object existingValue) [0x0007f] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:295 + at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType, System.Boolean checkAdditionalContent) [0x000d9] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Serialization\JsonSerializerInternalReader.cs:193 + at Newtonsoft.Json.JsonSerializer.DeserializeInternal (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00045] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:823 + at Newtonsoft.Json.JsonSerializer.Deserialize (Newtonsoft.Json.JsonReader reader, System.Type objectType) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\JsonSerializer.cs:802 + at Newtonsoft.Json.Linq.JToken.ToObject (System.Type objectType, Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00012] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Linq\JToken.cs:2077 + at Newtonsoft.Json.Linq.JToken.ToObject[T] (Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00000] in C:\Project\Github\Json.Net.Unity3D\src\Newtonsoft.Json\Linq\JToken.cs:2062 + at ArenaCore.Pwn.Abstraction.Models.Arena.FcaContext..ctor (Newtonsoft.Json.Linq.JObject jsonJObject, Newtonsoft.Json.JsonSerializer serializer) [0x00055] in /arena/Assets/Scripts/Network/Lambda/Data/Interfaces/Arena/FcaContext.cs:119 + at SimpleFudbal.MasterClasses.Lambda.MasterClient.ParseLoginData (Newtonsoft.Json.Linq.JToken data) [0x0011c] in /arena/Assets/Scripts/Network/Lambda/MasterClient.cs:744 + Login failed +Clearing cached servers because of failed login +Login error code = -1, recoverable = False +Non-mobile platform, skipping analytics init. +Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+d__0.MoveNext () [0x000e6] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:25 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +'tutorial.main-gameplay' set to 'true' +'tutorial.team-panel' set to 'true' +'tutorial.formation-panel' set to 'true' +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:37 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:39 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:40 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:41 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:42 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:44 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:45 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:46 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+d__0.MoveNext () [0x0011c] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:30 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CoroutineTestWorkItem+c__Iterator0.MoveNext () [0x001b2] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs:67 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestTools.TestRunner.PlaymodeTestsController+c__Iterator1.MoveNext () [0x00062] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs:69 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 '. Use UnityEngine.TestTools.LogAssert.Expect]]> + d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106) +UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) + +]]> + + :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+d__0.MoveNext () [0x0011c] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:30 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CoroutineTestWorkItem+c__Iterator0.MoveNext () [0x001b2] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs:67 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator1.MoveNext () [0x000fe] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:190 + at UnityEngine.TestRunner.NUnitExtensions.Runner.CompositeWorkItem+c__Iterator0.MoveNext () [0x0023b] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs:73 + at UnityEngine.TestTools.TestRunner.PlaymodeTestsController+c__Iterator1.MoveNext () [0x00062] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs:69 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:48 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +tow manager is exists delete the second +Using MANAGED ZLib +Scene FrontEndScene is loaded + Front-end started +Timestamp: 22.02.2019. 16:04:50 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:51 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:52 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:54 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:55 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:56 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +]]> + + + + + + + + + + + Front-end started +Timestamp: 22.02.2019. 16:04:58 UTC+0 +App version: 0.9.166 +Build: 1902011800 / develop / Android +Build time: 01.02.2019. 18:00 UTC+0 +Device model: PC +Screen resolution: 640 x 480 (0 dpi) +Screen safe area: 0, 0 -> 640, 480 (640 x 480) +Vertical safe ratio: 1 + GUI switch: login +SKIP_SOCIAL override is set, won't use social plugins for login +Command line argument count : 12 +[0] /opt/Unity/Editor/Unity +[1] -accept-apiupdate +[2] -projectPath +[3] /arena +[4] -batchmode +[5] -nographics +[6] -logfile +[7] -runTests +[8] -testPlatform +[9] playmode +[10] -testResults +[11] /arena/UnityUiResults.xml +There are no matches on record! + GUI switch: play +NullReferenceException: Object reference not set to an instance of an object +Canceling all notifications +Fader: loading panel is initally shown +Exception: Operation timed out: UITestBase+PanelShown '' + at System.Environment.get_StackTrace () [0x00000] in :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at HappyPath+d__0.MoveNext () [0x00146] in /arena/Assets/Scripts/UITest/Paths/HappyPath.cs:30 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +]]> + + + + + + + + :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+d__1.MoveNext () [0x00125] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:84 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 '. Use UnityEngine.TestTools.LogAssert.Expect]]> + d__13.MoveNext () (at Assets/UITestBase/UITestBase.cs:106) +UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) + +]]> + + :0 + at UITestBase.WaitFor (UITestBase+Condition condition, System.Single timeout) [0x00008] in /arena/Assets/UITestBase/UITestBase.cs:38 + at EditTeamCrest+d__1.MoveNext () [0x00125] in /arena/Assets/Scripts/UITest/TeamEdit/EditTeamCrest.cs:84 + at UnityEngine.TestTools.TestEnumerator+c__Iterator0.MoveNext () [0x00031] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs:29 + at UnityEngine.TestTools.EnumerableTestMethodCommand+c__Iterator0.MoveNext () [0x000ec] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs:36 + at UnityEngine.TestRunner.NUnitExtensions.Runner.UnityLogCheckDelegatingCommand+c__Iterator0.MoveNext () [0x00153] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs:67 + at UnityEngine.TestTools.SetUpTearDownCommand+c__Iterator0.MoveNext () [0x0017a] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs:55 + at UnityEngine.TestTools.EnumerableSetUpTearDownCommand+c__Iterator0.MoveNext () [0x00289] in /home/builduser/buildslave/unity/build/Extensions/TestRunner/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs:101 + at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00028] in /home/builduser/buildslave/unity/build/Runtime/Export/Coroutines.cs:17 +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'RewardCardTemplate') is missing! +The referenced script (Unknown) on this Behaviour is missing! +The referenced script on this Behaviour (Game Object 'CrestDisplay') is missing! +]]> + + + + + \ No newline at end of file