Deprecated test file to show the info in IDE

This commit is contained in:
YuCheng Hu 2020-02-26 16:13:56 -05:00
parent b2d9b2c1d2
commit 0417a7b27e
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package com.ossez.customannotations;
import com.ossez.annotations.ClassWithDeprecatedMethod;
import org.junit.jupiter.api.Test;
public class DeprecatedTest {
@Test
public void testStrikesWarning() {
ClassWithDeprecatedMethod.deprecatedMethod();
}
}