public void Format() { Assert.That(_formatter.Format("test", "C#"), Is.Not.Null); Assert.That(_formatter.Format("test", "txt"), Is.Not.Null); return; }
public void Format_Can_Throw_CodeNullException() { _formatter.Format(null, "C#"); // throws exception }