JUnit 4.13.2 Source Code Files

JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar.

You can browse JUnit Source Code files below:

✍: FYIcenter.com

org/junit/experimental/theories/PotentialAssignment.java

package org.junit.experimental.theories;

import static java.lang.String.format;

public abstract class PotentialAssignment {
    public static class CouldNotGenerateValueException extends Exception {
        private static final long serialVersionUID = 1L;
        
        public CouldNotGenerateValueException() {
        }
        
        public CouldNotGenerateValueException(Throwable e) {
            super(e);
        }
    }

    public static PotentialAssignment forValue(final String name, final Object value) {
        return new PotentialAssignment() {
            @Override
            public Object getValue() {
                return value;
            }

            @Override
            public String toString() {
                return format("[%s]", value);
            }

            @Override
            public String getDescription() {
                String valueString;

                if (value == null) {
                    valueString = "null";
                } else {
                    try {
                        valueString = format("\"%s\"", value);
                    } catch (Throwable e) {
                        valueString = format("[toString() threw %s: %s]", 
                                             e.getClass().getSimpleName(), e.getMessage());
                    }
                }

                return format("%s <from %s>", valueString, name);
            }
        };
    }

    public abstract Object getValue() throws CouldNotGenerateValueException;

    public abstract String getDescription() throws CouldNotGenerateValueException;
}

org/junit/experimental/theories/PotentialAssignment.java

 

Or download all of them as a single archive file:

File name: junit-4.13.2-sources.jar
File size: 234540 bytes
Release date: 2021-02-13
Download 

 

Download and Install junit-4.12.jar

Download and Install junit-4.13.2.jar

Download and Install JUnit (Java Unit) Testing

⇑⇑ FAQ for JUnit (Java Unit) Testing

2016-03-28, 10723👍, 0💬