aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.MediaEncoding.Tests/Encoder
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2026-06-15 21:20:06 +0200
committerBond_009 <bond.009@outlook.com>2026-06-15 21:20:06 +0200
commit0022508889adb8b60bde8bc5e69640d3ff8dd346 (patch)
treee4aec840753f2e58bedd95c0bedd5b42fde4d57f /tests/Jellyfin.MediaEncoding.Tests/Encoder
parenta9a02719abd0faefbd90550f6ba576d2f63db436 (diff)
Add regression test
Diffstat (limited to 'tests/Jellyfin.MediaEncoding.Tests/Encoder')
-rw-r--r--tests/Jellyfin.MediaEncoding.Tests/Encoder/ApplePlatformHelperTests.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/Jellyfin.MediaEncoding.Tests/Encoder/ApplePlatformHelperTests.cs b/tests/Jellyfin.MediaEncoding.Tests/Encoder/ApplePlatformHelperTests.cs
new file mode 100644
index 0000000000..586a382485
--- /dev/null
+++ b/tests/Jellyfin.MediaEncoding.Tests/Encoder/ApplePlatformHelperTests.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Runtime.Versioning;
+using MediaBrowser.MediaEncoding.Encoder;
+using Xunit;
+
+namespace Jellyfin.MediaEncoding.Tests;
+
+[SupportedOSPlatform("macos")]
+public class ApplePlatformHelperTests
+{
+ [Fact]
+ public void GetSysctlValue_CpuBrand_NotEmpty()
+ {
+ Assert.SkipUnless(OperatingSystem.IsMacOS(), "macOS-only test");
+
+ Assert.NotEmpty(ApplePlatformHelper.GetSysctlValue("machdep.cpu.brand_string"));
+ }
+}