b4a2edec6a
* Final update copyright headers to reference license files at the repo root Signed-off-by: spham <spham@amazon.com> * Fix copyright validator unit tests to support the stale O3DE header scenario Signed-off-by: spham <spham@amazon.com>
39 lines
840 B
C++
39 lines
840 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#ifndef RCCONTROLLERUNITTESTS_H
|
|
#define RCCONTROLLERUNITTESTS_H
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include "UnitTestRunner.h"
|
|
#include "native/resourcecompiler/rccontroller.h"
|
|
#endif
|
|
|
|
|
|
class RCcontrollerUnitTests
|
|
: public UnitTestRun
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
virtual void StartTest() override;
|
|
|
|
RCcontrollerUnitTests();
|
|
void Reset();
|
|
|
|
Q_SIGNALS:
|
|
void RcControllerPrepared();
|
|
public Q_SLOTS:
|
|
void PrepareRCController();
|
|
void RunRCControllerTests();
|
|
|
|
|
|
private:
|
|
AssetProcessor::RCController m_rcController;
|
|
AssetBuilderSDK::AssetBuilderDesc m_assetBuilderDesc;
|
|
};
|
|
|
|
#endif // RCCONTROLLERUNITTESTS_H
|