mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
20 lines
470 B
C#
20 lines
470 B
C#
using Xunit;
|
|
|
|
namespace Bit.Icons.Test.Resources;
|
|
|
|
public class VerifyResources
|
|
{
|
|
[Theory]
|
|
[InlineData("Bit.Icons.Resources.public_suffix_list.dat")]
|
|
public void Resources_FoundAndReadable(string resourceName)
|
|
{
|
|
var assembly = typeof(Program).Assembly;
|
|
|
|
using (var resource = assembly.GetManifestResourceStream(resourceName))
|
|
{
|
|
Assert.NotNull(resource);
|
|
Assert.True(resource.CanRead);
|
|
}
|
|
}
|
|
}
|