15 lines
280 B
C#
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");
|
|
}
|
|
} |