Skip to content

Commit

Permalink
initial, rahter weak passing test
Browse files Browse the repository at this point in the history
  • Loading branch information
donbing committed May 21, 2012
1 parent 7558cd9 commit ca2d116
Showing 1 changed file with 6 additions and 0 deletions.
@@ -1,4 +1,5 @@
using NUnit.Framework;
using NUnit.Framework.SyntaxHelpers;

namespace TDDMicroExercises.TelemetrySystem.Tests
{
Expand All @@ -8,6 +9,11 @@ public class TelemetryDiagnosticControlsTest
[Test]
public void CheckTransmission_should_send_a_diagnostic_message_and_receive_a_status_message_response()
{
var telemetryDiagnosticControls = new TelemetryDiagnosticControls();

telemetryDiagnosticControls.CheckTransmission();

Assert.That(telemetryDiagnosticControls.DiagnosticInfo, Is.Not.Empty);
}

}
Expand Down

0 comments on commit ca2d116

Please sign in to comment.