mirror of
https://github.com/nasa/fprime.git
synced 2025-12-14 21:41:13 -06:00
* Format Fw and add to CI * Fix include of HPP file instead of H in extern C * Fix format strings
30 lines
986 B
C++
30 lines
986 B
C++
// ======================================================================
|
|
// \title Fw/FilePacket/GTest/PathName.cpp
|
|
// \author bocchino
|
|
// \brief Test utilities for start file packets
|
|
//
|
|
// \copyright
|
|
// Copyright (C) 2016, California Institute of Technology.
|
|
// ALL RIGHTS RESERVED. United States Government Sponsorship
|
|
// acknowledged.
|
|
//
|
|
// ======================================================================
|
|
|
|
#include <Fw/FilePacket/GTest/FilePackets.hpp>
|
|
#include <Fw/Types/GTest/Bytes.hpp>
|
|
|
|
namespace Fw {
|
|
|
|
namespace GTest {
|
|
|
|
void FilePackets::PathName ::compare(const FilePacket::PathName& expected, const FilePacket::PathName& actual) {
|
|
ASSERT_EQ(expected.getLength(), actual.getLength());
|
|
Bytes expectedPath(reinterpret_cast<const U8*>(expected.getValue()), expected.getLength());
|
|
Bytes actualPath(reinterpret_cast<const U8*>(actual.getValue()), actual.getLength());
|
|
Bytes::compare(expectedPath, actualPath);
|
|
}
|
|
|
|
} // namespace GTest
|
|
|
|
} // namespace Fw
|