Advertisement
Guest User

Untitled

a guest
Nov 14th, 2023
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. package com.example.suites;
  2.  
  3. import com.example.applications.app1.Application1BaseTest;
  4. import org.junit.platform.suite.api.SelectClasses;
  5. import org.junit.platform.suite.api.Suite;
  6.  
  7. @Suite
  8. @SelectClasses({Application1BaseTest.class})
  9. public class SmokeTests {
  10.     // This class remains empty, used only as a holder for the above annotations
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement