Hitta testmetoder via reflexion

This commit is contained in:
2019-11-18 23:58:04 +01:00
parent 094b1dfc34
commit 3c2a38d35f
4 changed files with 37 additions and 4 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace TestingLib
{
[AttributeUsage(AttributeTargets.Method)]
public class CheckThisMethod : Attribute
{
}
}