148.
In the NUnit test framework, which attribute must adorn a test class in order for it to be picked up by the NUnit GUI?
View Description
namespace NUnit.Tests
{
using System;
using NUnit.Framework;
[TestFixture]
public class SuccessTests
{
// ...
}
}