CpLibrary

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub fairy-lettuce/CpLibrary

:heavy_check_mark: CpLibrary.Test/Sample/AssertTrue.cs

Code

using System;
using Xunit;

namespace CpLibrary.Test
{
	public class AssertTrue
	{
		[Fact]
		public void Test()
		{
			Assert.True(true);
		}
	}
}
Back to top page