Created
November 12, 2015 11:18
-
-
Save bragboy/34f7baaa7c2b4997abdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package nasa.implementation; | |
| import nasa.main.Nasa; | |
| public class TestMain { | |
| public static void main(String args[]) { | |
| try { | |
| TestSignal test = new TestSignal(); | |
| Nasa n = new Nasa(test); | |
| n.execute(); | |
| String finalPos = n.getFinalPosition(); | |
| System.out.println("Final position is : " + finalPos); | |
| } catch (Exception e) { | |
| e.printStackTrace(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment