50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
|
using mdoc.Test.SampleClasses;
|
|||
|
using Mono.Documentation.Updater;
|
|||
|
using NUnit.Framework;
|
|||
|
|
|||
|
namespace mdoc.Test
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class DocUtilsTests : BasicTests
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void IsIgnored_MethodGeneratedByProperty_IsIgnoredTrue()
|
|||
|
{
|
|||
|
var method = GetMethod(typeof(SomeClass), "get_" + nameof(SomeClass.Property));
|
|||
|
|
|||
|
var isIgnoredPropertyGeneratedMethod = DocUtils.IsIgnored(method);
|
|||
|
|
|||
|
Assert.True(isIgnoredPropertyGeneratedMethod);
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void IsIgnored_GetMethodIsNotGeneratedByProperty_IsIgnoredFalse()
|
|||
|
{
|
|||
|
var method = GetMethod(typeof(SomeClass), nameof(SomeClass.get_Method));
|
|||
|
|
|||
|
var isIgnoredPropertyGeneratedMethod = DocUtils.IsIgnored(method);
|
|||
|
|
|||
|
Assert.False(isIgnoredPropertyGeneratedMethod);
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void IsIgnored_GetMethodInIterfaceIsGeneratedByProperty_IsIgnoredTrue()
|
|||
|
{
|
|||
|
var method = GetMethod(typeof(SomeInterface), "get_B");
|
|||
|
|
|||
|
var isIgnoredPropertyGeneratedMethod = DocUtils.IsIgnored(method);
|
|||
|
|
|||
|
Assert.IsTrue(isIgnoredPropertyGeneratedMethod);
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void IsIgnored_SetMethodIsGeneratedByProperty_IsIgnoredTrue()
|
|||
|
{
|
|||
|
var method = GetMethod(typeof(SomeClass), "set_" +nameof(SomeClass.Property4));
|
|||
|
|
|||
|
var isIgnoredPropertyGeneratedMethod = DocUtils.IsIgnored(method);
|
|||
|
|
|||
|
Assert.IsTrue(isIgnoredPropertyGeneratedMethod);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|