style: enable InvalidJavadocPosition in checkstyle (#5237)

enable style InvalidJavadocPosition

Co-authored-by: Samuel Facchinello <samuel.facchinello@piksel.com>
This commit is contained in:
Samuel Facchinello
2024-06-18 19:34:22 +02:00
committed by GitHub
parent 39e065437c
commit 74e51990c1
37 changed files with 284 additions and 358 deletions

View File

@ -1,10 +1,5 @@
package com.thealgorithms.scheduling;
/**
* Test Cases of Preemptive Priority Scheduling Algorithm
* @author [Bama Charan Chhandogi](https://www.github.com/BamaCharanChhandogi)
*/
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.ArrayList;
@ -12,6 +7,10 @@ import java.util.Arrays;
import java.util.List;
import org.junit.jupiter.api.Test;
/**
* Test Cases of Preemptive Priority Scheduling Algorithm
* @author [Bama Charan Chhandogi](https://www.github.com/BamaCharanChhandogi)
*/
class PreemptivePrioritySchedulingTest {
@Test