You cannot test whether a service was actually stopped using unit test. That's what other tests (e.g. integration tests) are for. Often it is worth testing though, whether you system under test (SUT) is actually making the right calls to stop the service.
In that case could wrap these concrete APIs into an interface (façade) specifically tailored towards the needs of your consumers. And then mock that interface and assert that the appropiate members have been called with the right arguments by your consumers that you are testing.
Example (c#, NUnit, FakeItEasy):
// implementation of this interface basically wraps the concrete service APIs of the OS
public interface IServiceController
{
public void Start(string serviceName);
public void Stop(string serviceName);
}
// consumer that wants to stop a specific service and that is your SUT
public class SomeConsumer
{
// ctor takes dependency on a service controller
SomeConsumer(IServiceController controller)
{
// ...
}
public void DoSomethingThatRequiresAServiceStop()
{
// ...
}
}
[TestFixture]
public class SomeConsumerTests
{
[Test]
public void DoSomethingThatRequiresAServiceStop_StopsServiceXYZ()
{
// arrange
IServiceController mockServiceConntroler = A.Fake<IServiceController>();
SomeConsumer sut = new SomeConsumer(mockServiceController);
// act
sut.DoSomethingThatRequiresAServiceStop();
// assert
A.CallTo(() => mockServiceConntroler.Stop("XYZ")).MustHaveHappend();
}
}
As Matt already pointed out in some environments that are tools that allow you to replace concrete implementations without you having to introduce abstractions (here: IServiceController). I tend to avoid these as much as possible because they often are not only a bit tedious to use but also seem to enforce bad design choice (e.g. depending on concrete implementations instead of abstractions). I see tools like Microsoft Moles or TypeMock Isolator more as tools that help you work with legacy code bases that already have a ton of bad design choices that you cannot get rid of (right away).