csharp
Copy code
[TestMethod]
public void Test_IsRunning_Boundary()
{
QUTUnit unit = new QUTUnit();
unit.StudentCount = 0;
Assert.IsFalse(unit.IsRunning(), "Unit should not run with zero students.");
unit.StudentCount = 1;
Assert.IsTrue(unit.IsRunning(), "Unit should run with one or more students.");
}