mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
CE-607 Go go tests
This commit is contained in:
@ -23,6 +23,7 @@ package com.kingsrook.qqq.backend.core.model.metadata.tables;
|
|||||||
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import com.kingsrook.qqq.backend.core.context.QContext;
|
import com.kingsrook.qqq.backend.core.context.QContext;
|
||||||
import com.kingsrook.qqq.backend.core.logging.QLogger;
|
import com.kingsrook.qqq.backend.core.logging.QLogger;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
||||||
@ -62,6 +63,7 @@ public class ExposedJoin
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public boolean getIsMany()
|
public boolean getIsMany()
|
||||||
{
|
{
|
||||||
return (getIsMany(QContext.getQInstance()));
|
return (getIsMany(QContext.getQInstance()));
|
||||||
@ -72,6 +74,7 @@ public class ExposedJoin
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public Boolean getIsMany(QInstance qInstance)
|
public Boolean getIsMany(QInstance qInstance)
|
||||||
{
|
{
|
||||||
if(isMany == null)
|
if(isMany == null)
|
||||||
|
@ -24,6 +24,7 @@ package com.kingsrook.qqq.backend.core.utils;
|
|||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
|
import com.kingsrook.qqq.backend.core.BaseTest;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
@ -31,7 +32,7 @@ import org.junit.jupiter.api.Test;
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** Unit test for YamlUtils
|
** Unit test for YamlUtils
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
class YamlUtilsTest
|
class YamlUtilsTest extends BaseTest
|
||||||
{
|
{
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
Reference in New Issue
Block a user