package oop.JavaGrinder.Tests;
/**
* Tests for a single method
*/
public class MethodDecTest {
public void singleMethod(){
}
public static void main(){
// MethodDecTest gentleman = new MethodDecTest();
// gentleman.singleMethod();
}
}