Код: Выделить всё
CommonContext.setTenantIgnore(true);
Код: Выделить всё
@BeforeAll
public static void before() {
CommonContextHolder.setTenantIgnore(true);
}
@BeforeEach
void init() {
CommonContextHolder.setTenantIgnore(true);
}
@Before
public void setup() {
CommonContextHolder.setTenantIgnore(true);
}
Код: Выделить всё
@SpringJUnitConfig
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public class TenantIgnore {
@BeforeAll
public static void setUp() {
CommonContextHolder.setTenantIgnore(true);
}
}
Подробнее здесь: https://stackoverflow.com/questions/793 ... g-boot-app