kiss.util.TestApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kiss Show documentation
Show all versions of kiss Show documentation
Learing and teaching programming concepts with Java kept simple.
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; }
}