Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Commit ce5e875

Browse files
committed
Fix NEXT_ASSEMBLY
1 parent 02d4bdf commit ce5e875

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Assets/RuntimeUnitTestToolkit/UnitTestRunner.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ static IEnumerable<Type> GetTestTargetTypes()
140140
}
141141
catch (Exception ex)
142142
{
143+
Debug.Log("TestAttribute Load Fail, Assembly:" + assembly.FullName);
143144
Debug.LogException(ex);
144-
Debug.Log("TestAttribute Fail, Assembly:" + assembly.FullName);
145145
goto NEXT_ASSEMBLY;
146146
}
147147
if (t1 != null)
@@ -157,8 +157,8 @@ static IEnumerable<Type> GetTestTargetTypes()
157157
}
158158
catch (Exception ex)
159159
{
160+
Debug.Log("UnityTestAttribute Load Fail, Assembly:" + assembly.FullName);
160161
Debug.LogException(ex);
161-
Debug.Log("UnityTestAttribute Fail, Assembly:" + assembly.FullName);
162162
goto NEXT_ASSEMBLY;
163163
}
164164
if (t2 != null)
@@ -167,10 +167,10 @@ static IEnumerable<Type> GetTestTargetTypes()
167167
break;
168168
}
169169
}
170-
171-
NEXT_ASSEMBLY:
172-
continue;
173170
}
171+
172+
NEXT_ASSEMBLY:
173+
continue;
174174
}
175175
}
176176

0 commit comments

Comments
 (0)