MockFileProcessor.cpp 559 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include "MockFileProcessor.h"
  9. namespace UnitTests
  10. {
  11. void MockFileProcessor::AssessAddedFile([[maybe_unused]] QString fileName)
  12. {
  13. m_events[TestEvents::Added].Signal();
  14. }
  15. void MockFileProcessor::AssessDeletedFile([[maybe_unused]] QString fileName)
  16. {
  17. m_events[TestEvents::Deleted].Signal();
  18. }
  19. }