Yes you should use it. (or any test runner)
Testing is quite an important part of programming (In my opinion), so if you (or someone else) changes a part of code, and it happens to break something down the line, your tests should pick this up.
Well, that's how I see it, I'm still new to unit testing.
An Example.
Lets say I have a method
Add(int a, int b)
{
return a + b;
}
My Unit Test would be:
[Test]
public void Test001_TestAdd()
{
Assert.IsTrue(Add(1,3) == 4);
}
If someone changed the Add Method to lets say:
Add(int a, int b)
{
return a * b;
}
My Unit test would fail, and could potentially save a life (if you work in medical software, or for NASA), or stop a potential bug :)
Now if they had Unit Tests, this may not have happened, simple problem, missed.