CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
HelpUrlBuilderTests.cs
Go to the documentation of this file.
1using Microsoft.VisualStudio.TestTools.UnitTesting;
2
4{
5 [TestClass]
6 public sealed class HelpUrlBuilderTests
7 {
8 [TestMethod]
9 public void Build()
10 {
11 var url = HelpUrlBuilder.Build("a", "b");
12 Assert.AreEqual("https://github.com/MarimerLLC/csla/tree/main/docs/analyzers/a-b.md", url);
13 }
14 }
15}