You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using NUnit.Framework.Interfaces;
|
|
using UnityEngine.TestTools.NUnitExtensions;
|
|
|
|
namespace UnityEngine.TestTools.Utils
|
|
{
|
|
internal class PlayerTestAssemblyProvider
|
|
{
|
|
private IAssemblyLoadProxy m_AssemblyLoadProxy;
|
|
private readonly List<string> m_AssembliesToLoad;
|
|
|
|
//Cached until domain reload
|
|
private static List<IAssemblyWrapper> m_LoadedAssemblies;
|
|
|
|
internal PlayerTestAssemblyProvider(IAssemblyLoadProxy assemblyLoadProxy, List<string> assembliesToLoad)
|
|
{
|
|
m_AssemblyLoadProxy = assemblyLoadProxy;
|
|
m_AssembliesToLoad = assembliesToLoad;
|
|
LoadAssemblies();
|
|
}
|
|
|
|
public List<IAssemblyWrapper> GetUserAssemblies()
|
|
{
|
|
return m_LoadedAssemblies;
|
|
}
|
|
|
|
private void LoadAssemblies()
|
|
{
|
|
if (m_LoadedAssemblies != null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
m_LoadedAssemblies = new List<IAssemblyWrapper>();
|
|
|
|
foreach (var userAssembly in m_AssembliesToLoad)
|
|
{
|
|
IAssemblyWrapper a;
|
|
try
|
|
{
|
|
a = m_AssemblyLoadProxy.Load(userAssembly);
|
|
}
|
|
catch (FileNotFoundException)
|
|
{
|
|
continue;
|
|
}
|
|
if (a != null)
|
|
m_LoadedAssemblies.Add(a);
|
|
}
|
|
}
|
|
}
|
|
}
|