Files
Gitcloned-PCL-CE/PCL.Test/ToastTest.cs
2025-08-08 20:56:46 +08:00

15 lines
280 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
using static PCL.Core.UI.ToastNotification;
namespace PCL.Test;
[TestClass]
public class ToastTest
{
[TestMethod]
public void TestToast()
{
SendToast("A toast notice from PCL.Core!", "Test Toast");
}
}