Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Added additional stubs for classes and tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Jay Billings <billingsjj@ornl.gov>
  • Loading branch information
Jay Jay Billings committed Aug 14, 2019
1 parent 92b31c0 commit 55c1467
Show file tree
Hide file tree
Showing 5 changed files with 150 additions and 10 deletions.
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (c) 2019- UT-Battelle, LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Initial API and implementation and/or initial documentation -
* Jay Jay Billings, Joe Osborn
*******************************************************************************/
package org.eclipse.ice.commands;

/**
* This class represents a connection to a remote system. This could be a system
* that is physically remote or remote in a process sense.
*
* @author Jay Jay Billings
*
*/
public class Connection {

/**
*
*/
public Connection() {
// TODO Auto-generated constructor stub
}

}
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (c) 2019- UT-Battelle, LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Initial API and implementation and/or initial documentation -
* Jay Jay Billings, Joe Osborn
*******************************************************************************/
package org.eclipse.ice.commands;

/**
* This class provides the complete configuration for a remote
* {@link org.eclipse.ice.commands.Connection}.
*
* @author Jay Jay Billings
*
*/
public class ConnectionConfiguration {

/**
*
*/
public ConnectionConfiguration() {
// TODO Auto-generated constructor stub
}

}
@@ -0,0 +1,43 @@
/*******************************************************************************
* Copyright (c) 2019- UT-Battelle, LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Initial API and implementation and/or initial documentation -
* Jay Jay Billings, Joe Osborn
*******************************************************************************/
package org.eclipse.ice.tests.commands;

import static org.junit.Assert.fail;

import org.junit.BeforeClass;
import org.junit.Test;

/**
* This class tests {@link org.eclipse.ice.commands.ConnectionConfiguration}.
*
* @author Jay Jay Billings
*
*/
public class ConnectionConfigurationTest {

/**
* @throws java.lang.Exception
*/
@BeforeClass
public static void setUpBeforeClass() throws Exception {
}

/**
* Test method for
* {@link org.eclipse.ice.commands.ConnectionConfiguration#ConnectionConfiguration()}.
*/
@Test
public void testConnectionConfiguration() {
fail("Not yet implemented");
}

}
@@ -0,0 +1,42 @@
/*******************************************************************************
* Copyright (c) 2019- UT-Battelle, LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Initial API and implementation and/or initial documentation -
* Jay Jay Billings, Joe Osborn
*******************************************************************************/
package org.eclipse.ice.tests.commands;

import static org.junit.Assert.fail;

import org.junit.BeforeClass;
import org.junit.Test;

/**
* This class tests {@link org.eclipse.ice.commands.Connection}.
*
* @author Jay Jay Billings
*
*/
public class ConnectionTest {

/**
* @throws java.lang.Exception
*/
@BeforeClass
public static void setUpBeforeClass() throws Exception {
}

/**
* Test method for {@link org.eclipse.ice.commands.Connection#Connection()}.
*/
@Test
public void testConnection() {
fail("Not yet implemented");
}

}
Expand Up @@ -11,14 +11,13 @@
*******************************************************************************/
package org.eclipse.ice.tests.commands;

import static org.junit.Assert.fail;
import static org.junit.Assert.*;

import org.junit.BeforeClass;
import org.junit.Test;

/**
* This class tests {@link org.eclipse.ice.commands.FileHandler}.
*
* @author Jay Jay Billings
*
*/
Expand All @@ -32,35 +31,31 @@ public static void setUpBeforeClass() throws Exception {
}

/**
* Test method for
* {@link org.eclipse.ice.commands.FileHandler#FileHandler()}.
* Test method for {@link org.eclipse.ice.commands.FileHandler#FileHandler()}.
*/
@Test
public void testFileHandler() {
fail("Not yet implemented");
}

/**
* Test method for
* {@link org.eclipse.ice.commands.FileHandler#move(java.lang.String, java.lang.String)}.
* Test method for {@link org.eclipse.ice.commands.FileHandler#move(java.lang.String, java.lang.String)}.
*/
@Test
public void testMove() {
fail("Not yet implemented");
}

/**
* Test method for
* {@link org.eclipse.ice.commands.FileHandler#copy(java.lang.String, java.lang.String)}.
* Test method for {@link org.eclipse.ice.commands.FileHandler#copy(java.lang.String, java.lang.String)}.
*/
@Test
public void testCopy() {
fail("Not yet implemented");
}

/**
* Test method for
* {@link org.eclipse.ice.commands.FileHandler#exists(java.lang.String)}.
* Test method for {@link org.eclipse.ice.commands.FileHandler#exists(java.lang.String)}.
*/
@Test
public void testExists() {
Expand Down

0 comments on commit 55c1467

Please sign in to comment.