package org.rcsb.cif;

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

import java.io.IOException;

/**
 * Ensure that the provided Demo is actually running.
 */
class DemoTest {
    @Disabled("Attempts to use the network")
    @Test
    void testDemo() throws IOException {
        Demo.main(new String[0]);
    }
}
