You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw that there was no testing for PrimeCheck algorithm, so I decided to write some test for the function isPrime (int n) based on All-DU-Paths standard.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Please reopen this issue once you add more information and updates here. If this is not the case and you need some help, feel free to seek help from our Gitter or ping one of the reviewers. Thank you for your contributions!
Uh oh!
There was an error while loading. Please reload this page.
I saw that there was no testing for PrimeCheck algorithm, so I decided to write some test for the function
isPrime (int n)
based on All-DU-Paths standard.dir: src/test/java/com.thealgorithms/maths/PrimeCheckTest
`package com.thealgorithms.maths;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class PrimeCheckTest {
}
`
The text was updated successfully, but these errors were encountered: