waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

AnimalTest.java (208B)


      1 package org.example;
      2 
      3 import junit.framework.TestCase;
      4 
      5 public class AnimalTest extends TestCase {
      6 	public AnimalTest() {
      7 	}
      8 
      9 	public void testAnimal() {
     10 		System.out.println("Test run successfully!");
     11 	}
     12 }
     13