1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-01 08:41:32 +00:00

Initial project creation

This commit is contained in:
Seth J. Morabito 2008-12-05 16:44:33 -08:00
commit 7f31c4c950
4 changed files with 65 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*~
*#
target

18
pom.xml Normal file
View File

@ -0,0 +1,18 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.loomcom.j6502</groupId>
<artifactId>j6502</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>j6502</name>
<url>http://www.loomcom.com/j6502</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,11 @@
package com.loomcom.j6502;
/**
* Main control class for the J6502 Simulator.
*/
public class Control {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}

View File

@ -0,0 +1,33 @@
package com.loomcom.j6502;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for the j6502 control class.
*/
public class ControlTest extends TestCase {
/**
* Create the test case
*
* @param testName name of the test case
*/
public ControlTest(String testName) {
super(testName);
}
/**
* @return the suite of tests being tested
*/
public static Test suite() {
return new TestSuite(ControlTest.class);
}
/**
* Rigourous Test :-)
*/
public void testControl() {
assertTrue(true);
}
}