Giter Site home page Giter Site logo

Comments (5)

uchagani avatar uchagani commented on May 29, 2024 1

Thanks. @yury-s i can work on this. It's a bit more involved than just adding @inherited. Should have a fix soon.

from playwright-java.

uchagani avatar uchagani commented on May 29, 2024 1

Ah ok I understand your use case now. #1515 now also adds @Inherited to the fixture annotation.

from playwright-java.

otbe avatar otbe commented on May 29, 2024

True I was more thinking about the abstract super class case. :)
Therefore we would need @inherited I assume based on org.junit.platform.commons.util.AnnotationUtils#findAnnotation(java.lang.reflect.AnnotatedElement, java.lang.Class<A>, boolean, java.util.Set<java.lang.annotation.Annotation>)

from playwright-java.

uchagani avatar uchagani commented on May 29, 2024

@otbe can your provide an example of what you need working? The example you gave above is working without @inherited after the pull request is merged in.

from playwright-java.

otbe avatar otbe commented on May 29, 2024

For example:

@UsePlaywright
public abstract class AbstractBrowserTest {
  // .. some shared test code
}

public class TestFixturesWithNestedClass extends AbstractBrowserTest {

  @Test
  void worksWithOuterClass(Page page) {
    assertNotNull(page);
  }

  @Nested
  class NestedClass {
    @Test
    void worksWithNestedClasses(Page page) {
      assertNotNull(page);
    }

    @Nested
    class DeeplyNestedClass {
      @Test
      void worksWithDeeplyNestedClass(Page page) {
        assertNotNull(page);
      }
    }
  }
}

In our case AbstractBrowserTest has @SpringBootTest, junits @Tag and some shared test code like login(), goToPage(...). I think @Inherited is needed so that AnnotationUtils goes up the tree to our super class.

from playwright-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.