You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2020/01/26 15:57:46 UTC

[isis] 11/14: ISIS-2272: removes irrelevant unit test

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit d535ceb1d566c845809ca9a5ed1809481e5fae8e
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Jan 26 15:10:32 2020 +0000

    ISIS-2272: removes irrelevant unit test
---
 .../HomePageAnnotationFacetFactoryTest.java        | 69 ----------------------
 1 file changed, 69 deletions(-)

diff --git a/core/metamodel/src/test/java/org/apache/isis/core/metamodel/facets/actions/homepage/HomePageAnnotationFacetFactoryTest.java b/core/metamodel/src/test/java/org/apache/isis/core/metamodel/facets/actions/homepage/HomePageAnnotationFacetFactoryTest.java
deleted file mode 100644
index ba0258b..0000000
--- a/core/metamodel/src/test/java/org/apache/isis/core/metamodel/facets/actions/homepage/HomePageAnnotationFacetFactoryTest.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- *  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.
- */
-
-package org.apache.isis.core.metamodel.facets.actions.homepage;
-
-import java.lang.reflect.Method;
-
-import org.junit.Ignore;
-
-import org.apache.isis.applib.annotation.HomePage;
-import org.apache.isis.core.metamodel.facetapi.Facet;
-import org.apache.isis.core.metamodel.facets.AbstractFacetFactoryTest;
-import org.apache.isis.core.metamodel.facets.FacetFactory.ProcessMethodContext;
-import org.apache.isis.core.metamodel.facets.actions.homepage.annotation.HomePageFacetAnnotation;
-import org.apache.isis.core.metamodel.facets.actions.homepage.annotation.HomePageFacetAnnotationFactory;
-
-public class HomePageAnnotationFacetFactoryTest extends AbstractFacetFactoryTest {
-
-    private HomePageFacetAnnotationFactory facetFactory;
-
-    @Override
-    protected void setUp() throws Exception {
-        super.setUp();
-
-        facetFactory = new HomePageFacetAnnotationFactory();
-    }
-
-    @Override
-    protected void tearDown() throws Exception {
-        facetFactory = null;
-        super.tearDown();
-    }
-
-    @Ignore // need to refactor this..
-    public void testHomePageAnnotationPickedUpOnAction() {
-        class HomePageService {
-            //@HomePage
-            public Object lookup() { return null; }
-        }
-
-        final Method actionMethod = findMethod(HomePageService.class, "lookup");
-
-        facetFactory.process(new ProcessMethodContext(Customer.class, null, actionMethod, methodRemover, facetedMethod));
-
-        final Facet facet = facetedMethod.getFacet(HomePageFacet.class);
-        assertNotNull(facet);
-        assertTrue(facet instanceof HomePageFacetAnnotation);
-
-        assertNoMethodsRemoved();
-    }
-
-
-}