summaryrefslogtreecommitdiffstats
path: root/modules/convert/repository.go
Commit message (Expand)AuthorAgeFilesLines
* Add MirrorUpdated field to Repository API type (#18267)Peter GardfjÀll2022-01-181-0/+5
* Add API to manage repo tranfers (#17963)qwerty2872021-12-231-0/+30
* Move repository model into models/repo (#17933)Lunny Xiao2021-12-101-5/+9
* Move accessmode into models/perm (#17828)Lunny Xiao2021-11-281-5/+6
* Move unit into models/unit/ (#17576)Lunny Xiao2021-11-091-6/+7
* Fix some API bugs (#16184)65432021-06-181-1/+1
* [refactor] Unify the export of user data via API (#15144)65432021-03-271-1/+1
* Add DefaultMergeStyle option to repository (#14789)parnic2021-03-271-0/+3
* Add MirrorInterval to the API (#14163)Paul Barton2021-01-021-0/+8
* issue #12450: return original URL in `original_url` JSON field (#13885)Eric Belhomme2020-12-071-0/+1
* Move Repo APIFormat to convert package (#13787)65432020-12-021-0/+137
r/rtf/RichTextFormatTestSuite.java
blob: 502604344b18d867752b059b5aae5bbf4fa68d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/* $Id$ */

package org.apache.fop.render.rtf;

import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * Test suite for FOP's RTF library.
 */
public class RichTextFormatTestSuite {

    /**
     * Builds the test suite
     * @return the test suite
     */
    public static Test suite() {
        TestSuite suite = new TestSuite(
            "Test suite for RTF library");
        //$JUnit-BEGIN$
        suite.addTest(new TestSuite(Bug39607TestCase.class));
        //$JUnit-END$
        return suite;
    }
}