mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
394 B
Java
20 lines
394 B
Java
package com.avaje.tests.query;
|
|
|
|
import com.avaje.ebean.BaseTestCase;
|
|
import com.avaje.ebean.Ebean;
|
|
import com.avaje.tests.model.basic.Customer;
|
|
import org.junit.Test;
|
|
|
|
public class TestInvalidFetchPath extends BaseTestCase {
|
|
|
|
@Test
|
|
public void testWithPathAndProperties() {
|
|
|
|
Ebean.find(Customer.class)
|
|
.fetch("notHaveProps", "notHaveProps")
|
|
.findList();
|
|
|
|
}
|
|
|
|
}
|