From fa9888723f2de3bbdab61f0e6a88ae5a21719c79 Mon Sep 17 00:00:00 2001 From: Saxon Date: Fri, 5 Apr 2019 14:33:47 +1030 Subject: [PATCH] protocol/rtp: added parse_test.go file and fixed copyrights. --- protocol/rtp/parse.go | 2 +- protocol/rtp/parse_test.go | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 protocol/rtp/parse_test.go diff --git a/protocol/rtp/parse.go b/protocol/rtp/parse.go index d1ee487b..22a663f8 100644 --- a/protocol/rtp/parse.go +++ b/protocol/rtp/parse.go @@ -22,7 +22,7 @@ LICENSE for more details. You should have received a copy of the GNU General Public License - along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses). + in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses). */ package rtp diff --git a/protocol/rtp/parse_test.go b/protocol/rtp/parse_test.go new file mode 100644 index 00000000..7c5a03e9 --- /dev/null +++ b/protocol/rtp/parse_test.go @@ -0,0 +1,28 @@ +/* +NAME + parse_test.go + +DESCRIPTION + parse_test.go provides testing for behaviour of functionality in parse.go. + +AUTHOR + Saxon A. Nelson-Milton + +LICENSE + Copyright (C) 2019 the Australian Ocean Lab (AusOcean) + + This is free software: you can redistribute it and/or modify them + under the terms of the GNU General Public License as published by the + Free Software Foundation, either version 3 of the License, or (at your + option) any later version. + + It is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses). +*/ + +package rtp