2022-06-30 01:46:41 +02:00
|
|
|
|
using Bit.Core.Utilities;
|
2021-05-13 23:14:56 +02:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Test.Resources;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-05-13 23:14:56 +02:00
|
|
|
|
public class VerifyResources
|
|
|
|
|
{
|
2022-08-29 22:06:55 +02:00
|
|
|
|
[Theory]
|
2021-05-13 23:14:56 +02:00
|
|
|
|
[MemberData(nameof(GetResources))]
|
|
|
|
|
public void Resource_FoundAndReadable(string resourceName)
|
|
|
|
|
{
|
|
|
|
|
var assembly = typeof(CoreHelpers).Assembly;
|
2022-08-29 20:53:16 +02:00
|
|
|
|
|
2021-05-13 23:14:56 +02:00
|
|
|
|
using (var resource = assembly.GetManifestResourceStream(resourceName))
|
2022-08-29 20:53:16 +02:00
|
|
|
|
{
|
2021-05-13 23:14:56 +02:00
|
|
|
|
Assert.NotNull(resource);
|
|
|
|
|
Assert.True(resource.CanRead);
|
2022-08-29 21:53:48 +02:00
|
|
|
|
}
|
2022-08-29 20:53:16 +02:00
|
|
|
|
}
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-05-13 23:14:56 +02:00
|
|
|
|
public static IEnumerable<object[]> GetResources()
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2021-05-13 23:14:56 +02:00
|
|
|
|
yield return new[] { "Bit.Core.licensing.cer" };
|
|
|
|
|
yield return new[] { "Bit.Core.MailTemplates.Handlebars.AddedCredit.html.hbs" };
|
|
|
|
|
yield return new[] { "Bit.Core.MailTemplates.Handlebars.Layouts.Basic.html.hbs" };
|
2022-08-29 22:06:55 +02:00
|
|
|
|
}
|
2021-05-13 23:14:56 +02:00
|
|
|
|
}
|