Answers for "Imports estáticos"

0

Imports estáticos

import static org.junit.Assert.assertEquals;
 
import org.junit.Test;
 
public class ImportEstático {
 
    @Test
    public void test() {
        assertEquals(1, 1);
    }
 
}
Posted by: Guest on February-17-2022

Browse Popular Code Answers by Language