ntopng/tests/include/AddressResolutionTest.h
Giorgio Zoppi 6615ec052e modified: ../include/Prefs.h
modified:   include/AddressResolutionTest.h
	modified:   src/AddressResolutionTest.cpp
	include/NtopTestingBase.h
	src/NtopTestingBase.cpp
2022-02-07 12:06:40 +01:00

39 lines
No EOL
1.2 KiB
C++

/*
*
* (C) 2013-22 - ntop.org
*
*
* 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
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef _TEST_ADDRESS_RESOLUTION_H_
#define _TEST_ADDRESS_RESOLUTION_H_
#include "NtopTestingBase.h"
#include "gtest/gtest.h"
// TODO remove because of linking
AfterShutdownAction afterShutdownAction = after_shutdown_nop;
namespace ntoptesting {
class AddressResolutionTest : public ::testing::Test {
protected:
AddressResolution resolver_;
static constexpr const char* address_ = "media-router-fp73.prod.media.vip.ne1.yahoo.com";
NtopTestingBase ntop_;
};
}
#endif