20 lines
441 B
C++
20 lines
441 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/tbx/tbx_sockets_imp.h"
|
|
#include "shared/test/common/mocks/mock_tbx_sockets.h"
|
|
#include "shared/test/unit_test/tests_configuration.h"
|
|
|
|
namespace NEO {
|
|
TbxSockets *TbxSockets::create() {
|
|
if (testMode == TestMode::AubTestsWithTbx) {
|
|
return new TbxSocketsImp;
|
|
}
|
|
return new MockTbxSockets;
|
|
}
|
|
} // namespace NEO
|