X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FMPEGDVBBundle%2FTLVPacket.test.cc;h=d6aadc6cb216500edbab6f01fcc6badd644cf573;hb=8e80813a31e57bd8ca080c127d7b0ebf57a0638b;hp=86ee6bf5b607818687c25dfcae710a6862970c8c;hpb=8e973da50bdd625d2cbdd218143a4fcd920f9109;p=senf.git diff --git a/Packets/MPEGDVBBundle/TLVPacket.test.cc b/Packets/MPEGDVBBundle/TLVPacket.test.cc index 86ee6bf..d6aadc6 100644 --- a/Packets/MPEGDVBBundle/TLVPacket.test.cc +++ b/Packets/MPEGDVBBundle/TLVPacket.test.cc @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Thorsten Horstmann +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Thorsten Horstmann // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -158,10 +158,10 @@ void test_TLVFixPacket_parsing(unsigned lengthParser_size) BOOST_AUTO_UNIT_TEST(TLVFixPacket_parse_packet) { - test_TLVFixPacket_parsing( Parse_UInt8::fixed_bytes); - test_TLVFixPacket_parsing( Parse_UInt16::fixed_bytes); - test_TLVFixPacket_parsing( Parse_UInt24::fixed_bytes); - test_TLVFixPacket_parsing( Parse_UInt32::fixed_bytes); + test_TLVFixPacket_parsing( UInt8Parser::fixed_bytes); + test_TLVFixPacket_parsing( UInt16Parser::fixed_bytes); + test_TLVFixPacket_parsing( UInt24Parser::fixed_bytes); + test_TLVFixPacket_parsing( UInt32Parser::fixed_bytes); } @@ -202,10 +202,10 @@ void test_invalid_TLVFixPacket_creating(boost::uint32_t max_value) BOOST_AUTO_UNIT_TEST(TLVFixPacket_create_invalid_packet) { - test_invalid_TLVFixPacket_creating ( Parse_UInt8::max_value); - test_invalid_TLVFixPacket_creating( Parse_UInt16::max_value); - test_invalid_TLVFixPacket_creating( Parse_UInt24::max_value); - //test_invalid_TLVFixPacket_creating( Parse_UInt32::max_value); + test_invalid_TLVFixPacket_creating ( UInt8Parser::max_value); + test_invalid_TLVFixPacket_creating( UInt16Parser::max_value); + test_invalid_TLVFixPacket_creating( UInt24Parser::max_value); + //test_invalid_TLVFixPacket_creating( UInt32Parser::max_value); }