NUnit.Util.CategoryManager.Add(string)

Here are the examples of the csharp api NUnit.Util.CategoryManager.Add(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : CategoryManager.cs
with MIT License
from roozbehid

public void Add(IList list) 
		{
			foreach(string name in list) 
			{
				Add(name);
			}
		}