// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.ether;

/**
 * Created by IntelliJ IDEA.
 * User: db
 * Date: 26.09.11
 * Time: 17:40
 * To change this template use File | Settings | File Templates.
 */
public class TestGenerics extends IncrementalTestCase {
    public TestGenerics() throws Exception {
        super("generics");
    }

    public void testAddMethodToBase () throws Exception {
        doTest ();
    }

    public void testAddParameterizedMethodToBase () throws Exception {
        doTest ();
    }

    public void testChangeBound () throws Exception {
        doTest ();
    }

    public void testChangeBound1 () throws Exception {
        doTest ();
    }

    public void testChangeBoundClass1 () throws Exception {
        doTest ();
    }

    public void testChangeBoundedClass () throws Exception {
        doTest ();
    }

    public void testChangeBoundInterface1 () throws Exception {
        doTest ();
    }

    public void testChangeExtends () throws Exception {
        doTest ();
    }

    public void testChangeExtends1 () throws Exception {
        doTest ();
    }

    public void testChangeExtends2 () throws Exception {
        doTest ();
    }

    public void testChangeImplements () throws Exception {
        doTest ();
    }

    public void testChangeInterfaceTypeParameter () throws Exception {
        doTest ();
    }

    public void testChangeToCovariantMethodInBase () throws Exception {
        doTest ();
    }

    public void testChangeToCovariantMethodInBase2 () throws Exception {
        doTest ();
    }

    public void testChangeToCovariantMethodInBase3 () throws Exception {
        doTest ();
    }

    public void testChangeVarargSignature () throws Exception {
        doTest ();
    }

    public void testChangeVarargSignature1 () throws Exception {
        doTest ();
    }

    public void testCovariance () throws Exception {
        doTest ();
    }

    public void testCovariance1 () throws Exception {
        doTest ();
    }

    public void testCovariance2 () throws Exception {
        doTest ();
    }

    public void testCovarianceNoChanges () throws Exception {
        doTest ();
    }

    public void testDegenerify () throws Exception {
        doTest ();
    }

    public void testDegenerify1 () throws Exception {
        doTest ();
    }

    public void testFieldTypeChange () throws Exception {
        doTest ();
    }

    public void testOverrideAnnotatedAnonymous () throws Exception {
        doTest ();
    }

    public void testOverrideAnnotatedAnonymousNotRecompile () throws Exception {
        doTest ();
    }

    public void testOverrideAnnotatedInner () throws Exception {
        doTest ();
    }

    public void testParamTypes () throws Exception {
        doTest ();
    }

    public void testReturnType () throws Exception {
        doTest ();
    }
}
