1
1
mirror of https://github.com/ahabhyde/miguelbridge synced 2025-01-25 05:24:19 +01:00

Moved test class to test package

This commit is contained in:
Ahab 2018-04-10 12:38:00 +02:00
parent f6ae8dcb8b
commit 5a7d9e3507

View File

@ -1,5 +1,6 @@
package com.em.miguelbridge.matrixbot; package test;
import com.em.miguelbridge.matrixbot.MatrixBot;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
@ -7,7 +8,7 @@ import java.util.logging.Logger;
* *
* @author Emanuele Magon * @author Emanuele Magon
*/ */
public class prova { public class MatrixTest {
public static void main(String[] args) { public static void main(String[] args) {
String accessToken, roomAddress = "!mPkXwqjuGdhEVSopiG:maxwell.ydns.eu"; String accessToken, roomAddress = "!mPkXwqjuGdhEVSopiG:maxwell.ydns.eu";
try { try {
@ -32,7 +33,7 @@ public class prova {
} }
} catch (Exception ex) { } catch (Exception ex) {
Logger.getLogger(prova.class.getName()).log(Level.SEVERE, null, ex); Logger.getLogger(MatrixTest.class.getName()).log(Level.SEVERE, null, ex);
} }
} }
} }