All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kiss.util.TestApp Maven / Gradle / Ivy

The newest version!
package kiss.util;

class TestApp {
    int constructed = 0;
    TestApp() { ++constructed; }
    
    int tested = 0;
    void testEd() { ++tested; }
    
    int ran = 0;
    
    void run() { ++ran; }
    
    int closed = 0;
    void close() { ++closed; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy