We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550eb6f commit c402e4eCopy full SHA for c402e4e
compiler/src/test/java/com/github/mustachejava/MapObjectHandlerTest.java
@@ -10,7 +10,7 @@
10
public class MapObjectHandlerTest {
11
12
@Test
13
- public void testReflectionDisabledFieldsIgnored() {
+ public void testFieldsIgnored() {
14
String template = "{{field}}";
15
Object scope = new Object() {
16
public final String field = "value";
@@ -27,7 +27,7 @@ public void testReflectionDisabledFieldsIgnored() {
27
}
28
29
30
- public void testReflectionDisabledMethodsIgnored() {
+ public void testMethodsIgnored() {
31
String template = "{{method}}";
32
33
public String method() {
0 commit comments