adding ignore (#1832)

see ignore message
This commit is contained in:
James Frowen 2020-05-02 15:26:21 +01:00 committed by GitHub
parent d3dccd7a25
commit 2b5ad08260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,6 +128,7 @@ static void CallRegisterPrefab(GameObject prefab, bool setGuid, string newGuid)
[Test]
[TestCase(false)]
[TestCase(true)]
[Ignore("Ignoring this test till we know how to fix it, see https://github.com/vis2k/Mirror/issues/1831")]
public void RegisterPrefab_Prefab_AddsPrefabToDictionary(bool setGuid)
{
Guid guid = setGuid ? new Guid(AnotherGuidString) : validPrefabGuid;
@ -139,6 +140,7 @@ public void RegisterPrefab_Prefab_AddsPrefabToDictionary(bool setGuid)
}
[Test]
[Ignore("Ignoring this test till we know how to fix it, see https://github.com/vis2k/Mirror/issues/1831")]
public void RegisterPrefab_PrefabNewGuid_ChangePrefabsAssetId()
{
Guid guid = new Guid(AnotherGuidString);
@ -244,6 +246,7 @@ public void RegisterPrefab_Prefab_WarningForNetworkIdentityInChildren(bool setGu
[Test]
[TestCase(false, "")]
[TestCase(true, AnotherGuidString)]
[Ignore("Ignoring this test till we know how to fix it, see https://github.com/vis2k/Mirror/issues/1831")]
public void RegisterPrefab_Prefab_WarningForAssetIdAlreadyExistingInPrefabsDictionary(bool setGuid, string newGuid)
{
Guid guid = setGuid ? new Guid(newGuid) : validPrefabGuid;
@ -257,6 +260,7 @@ public void RegisterPrefab_Prefab_WarningForAssetIdAlreadyExistingInPrefabsDicti
[Test]
[TestCase(false, "")]
[TestCase(true, AnotherGuidString)]
[Ignore("Ignoring this test till we know how to fix it, see https://github.com/vis2k/Mirror/issues/1831")]
public void RegisterPrefab_Prefab_WarningForAssetIdAlreadyExistingInHandlersDictionary(bool setGuid, string newGuid)
{
Guid guid = setGuid ? new Guid(newGuid) : validPrefabGuid;