From 1ca95d099df96d576a0eaddc6e42b5b41aed3e06 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 22 Oct 2015 15:26:17 +1300 Subject: Refactor protocol unit testing --- test/org/traccar/protocol/Tr20ProtocolDecoderTest.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'test/org/traccar/protocol/Tr20ProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java b/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java index 2156e3385..2bf504176 100644 --- a/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java +++ b/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java @@ -1,8 +1,7 @@ package org.traccar.protocol; -import static org.traccar.helper.DecoderVerifier.verify; -import static org.junit.Assert.assertNull; import org.junit.Test; +import org.traccar.ProtocolDecoderTest; public class Tr20ProtocolDecoderTest extends ProtocolDecoderTest { @@ -11,9 +10,9 @@ public class Tr20ProtocolDecoderTest extends ProtocolDecoderTest { Tr20ProtocolDecoder decoder = new Tr20ProtocolDecoder(new Tr20Protocol()); - assertNull(decoder.decode(null, null, "%%TRACKPRO01,1")); + verifyNothing(decoder, text( "%%TRACKPRO01,1")); - verify(decoder.decode(null, null, + verifyPosition(decoder, text( "%%TR-10,A,050916070549,N2240.8887E11359.2994,0,000,NA,D3800000,150,CFG:resend|")); } -- cgit v1.2.3