- test package renamed

- export only ch.ntb.usb in manifest file

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@196 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-11-16 16:11:23 +00:00
parent 4d826dba80
commit b370621a91
5 changed files with 14 additions and 8 deletions

View File

@@ -8,6 +8,4 @@ Bundle-Vendor: inf.ntb.ch
Eclipse-LazyStart: false
Require-Bundle: org.junit4,
org.eclipse.swt
Export-Package: ch.ntb.usb,
ch.ntb.usb.testApp,
ch.ntb.usb.usbView
Export-Package: ch.ntb.usb

View File

@@ -1,4 +1,6 @@
package ch.ntb.usb;
package ch.ntb.usb.test;
import ch.ntb.usb.USB;
public class AT90USB1287 extends AbstractDeviceInfo {

View File

@@ -1,4 +1,4 @@
package ch.ntb.usb;
package ch.ntb.usb.test;
public abstract class AbstractDeviceInfo {

View File

@@ -1,4 +1,6 @@
package ch.ntb.usb;
package ch.ntb.usb.test;
import ch.ntb.usb.USB;
public class CY7C68013A extends AbstractDeviceInfo {

View File

@@ -1,4 +1,4 @@
package ch.ntb.usb;
package ch.ntb.usb.test;
import static org.junit.Assert.fail;
@@ -12,7 +12,11 @@ import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import ch.ntb.usb.AbstractDeviceInfo.WriteMode;
import ch.ntb.usb.Device;
import ch.ntb.usb.LibusbWin;
import ch.ntb.usb.USB;
import ch.ntb.usb.USBException;
import ch.ntb.usb.test.AbstractDeviceInfo.WriteMode;
public class DeviceTest {