Hi,
Using intellij LEDA 122-746 I am trying to get the following inserted from a live template
@Test
public void should_() {
// Given
// When
// Then
assertThat("");
}
I have defined a live template as such:
@org.junit.Test
public void should_(){
// Given
// When
// Then
org.fest.assertions.api.Assertions.assertThat("");
}
and checked all the check boxes (reformat, use static import if possible, shorten FQ Names)
what I get is :
@Test
public void should_() {
// Given
// When
// Then
Assertions.assertThat("");
}
Is this a bug or is there something I missed in the configuration ?
thanks