1

テストは、このクラスがスローする可能性のある例外とエラーの種類を適切にカバーする必要があり、CalculatePrimesMother のコンストラクター メソッドで欠陥のあるステートメントを適切にカバーする必要があります。

3 つの Junit テスト ケースが必要なメソッドは次のとおりです。

public CalculatePrimesMother(int numWorkers, int queueLength, int maxPrime,
            boolean verbose) {

        this.numWorkers = numWorkers;

        // Instantiate 3 queues, for thread-safe communication with workers
        Candidate = new ArrayBlockingQueue<Integer>(queueLength);
        Prime = new ArrayBlockingQueue<Integer>(queueLength);
        Composite = new ArrayBlockingQueue<Integer>(queueLength);

        this.maxPrime = maxPrime;
        this.sqrtMaxPrime = (int) Math.sqrt(maxPrime);
        primeFactors = new int[sqrtMaxPrime];
        this.verbose = verbose;
    }

テストケースを作成しようとしましたが、完全なカバレッジを得ることができませんでした。誰か助けてもらえますか?

public class CalculatePrimesMotherTest extends TestCase {

    public CalculatePrimesMotherTest(String name) {
        super(name);
    }

    private CalculatePrimesMother testMother;

    @Test
    public final void testCalculatePrimesMotherNegativequeueLength() {
        try {
            testMother = new CalculatePrimesMother(4, -12, 908, false);
        } catch (Exception e) {
            e.printStackTrace();

        }

    }

    @Test
    public final void testCalculatePrimesMotherMinusOne() {
        try {
            testMother = new CalculatePrimesMother(8, 12, 0, true);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
4

1 に答える 1