The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

v1_3alpha_1 :: tests / src / java / org / apache / log4j /

Last.java


package org.apache.log4j;

import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.framework.Test;

public class Last extends TestCase {

  public Last(String name) {
    super(name);
  }


  public void test1() {
  }

  public static Test suite() {
    TestSuite suite = new TestSuite();
    suite.addTest(new Last("test1"));
    return suite;
  }

}

[See repo JSON]