Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
disable homework 5 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ysp2000 committed Nov 2, 2022
1 parent 5ebb3d7 commit fe2f224
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package company.vk.polis.ads.workshop;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.ArrayDeque;
Expand All @@ -8,6 +9,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;

@Disabled("Disabled since 6th homework released")
public class CircularBufferQueueTest {
@Test
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package company.vk.polis.ads.workshop;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.time.Duration;
Expand All @@ -9,6 +10,7 @@

import static org.junit.jupiter.api.Assertions.*;

@Disabled("Disabled since 6th homework released")
class ImprovedInsertionSortTest {
@Test
void test() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package company.vk.polis.ads.workshop;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.concurrent.ThreadLocalRandom;

import static org.junit.jupiter.api.Assertions.*;

@Disabled("Disabled since 6th homework released")
class MaxSubarrayTest {
private int[] generateArray(int length) {
int[] array = new int[length];
Expand Down

0 comments on commit fe2f224

Please sign in to comment.