Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/LibreOffice/ios/UnitTest/UnitTest/   (Office von Apache Version 25.8.3.2©)  Datei vom 5.10.2025 mit Größe 2 kB image not shown  

Quelle  ViewController.mm   Sprache: unbekannt

 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <cassert>
#include <iostream>

#include <sal/config.h>

#include <cppuhelper/exc_hlp.hxx>
#include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
#include <com/sun/star/uno/Any.hxx>
#include <sfx2/app.hxx>
#include <vcl/svapp.hxx>

#include <cppunit/CompilerOutputter.h>
#include <cppunit/TestResult.h>
#include <cppunit/TestResultCollector.h>
#include <cppunit/TestRunner.h>
#include <cppunit/TextTestProgressListener.h>

#import <LibreOfficeKit/LibreOfficeKit.hxx>

extern "C" {
#import <native-code.h>
}

#include <premac.h>
#import <CoreGraphics/CoreGraphics.h>
#import "ViewController.h"
#include <postmac.h>

@interface ViewController ()

@end

#define CPPUNIT_PLUGIN_EXPORTED_NAME CppuMisc
#include "../../../cppuhelper/qa/misc/test_misc.cxx"

#undef CPPUNIT_PLUGIN_EXPORTED_NAME
#define CPPUNIT_PLUGIN_EXPORTED_NAME CppuUnourl
#include "../../../cppuhelper/qa/unourl/cppu_unourl.cxx"

#undef CPPUNIT_PLUGIN_EXPORTED_NAME
#define CPPUNIT_PLUGIN_EXPORTED_NAME BitmapTest
#include "../../../vcl/qa/cppunit/BitmapTest.cxx"

#define main tilebench_main
#include "../../../libreofficekit/qa/tilebench/tilebench.cxx"

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    // Simplest (?) way to do all the tedious initialization
    lok_init_2(nullptr, nullptr);

    {
        // First run some normal cppunit tests. Seems that at least the BitmapTest needs to be run
        // with the SolarMutex held.

        SolarMutexGuard solarMutexGuard;

        CppUnit::TestResult result;

        CppUnit::TextTestProgressListener logger;
        result.addListener(&logger);

        CppUnit::TestResultCollector collector;
        result.addListener(&collector);

        CppUnit::TestRunner runner;
        runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
        runner.run(result);

        CppUnit::CompilerOutputter outputter(&collector, std::cerr);
        outputter.write();
    }

    // Then some more specific stuff
    tilebench_main(0, nullptr);
}

@end

[ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet)  ]