blob: 58e5ebb2a44db69ab976c1c752ee6b4f56211347 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.internal;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
public class ServiceTest {
@Before
public void setUp() {
System.loadLibrary("syncbase");
}
@Test
public void listDatabases() {
assertTrue(Service.ListDatabases().isEmpty());
}
}