Changed the name of tests from LiveTests to LiveTest

This commit is contained in:
CHANDRAKANT Kumar 2023-10-23 16:05:03 +05:30
parent 9796fd5197
commit c36a6cc5a4
5 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ import dev.langchain4j.store.embedding.EmbeddingMatch;
import dev.langchain4j.store.embedding.EmbeddingStore;
import dev.langchain4j.store.embedding.inmemory.InMemoryEmbeddingStore;
public class ChainWithDocumentLiveTests {
public class ChainWithDocumentLiveTest {
@Test
public void givenChainWithDocument_whenPrompted_thenValidResponse() {

View File

@ -27,7 +27,7 @@ import dev.langchain4j.store.embedding.EmbeddingStore;
import dev.langchain4j.store.embedding.EmbeddingStoreIngestor;
import dev.langchain4j.store.embedding.inmemory.InMemoryEmbeddingStore;
public class ChatWithDocumentLiveTests {
public class ChatWithDocumentLiveTest {
@Test
public void givenDocument_whenPrompted_thenValidResponse() {

View File

@ -15,7 +15,7 @@ import java.util.logging.Logger;
import org.junit.Assert;
import org.junit.Test;
public class ChatWithMemoryLiveTests {
public class ChatWithMemoryLiveTest {
@Test
public void givenMemory_whenPrompted_thenValidResponse() {

View File

@ -15,7 +15,7 @@ import dev.langchain4j.model.openai.OpenAiChatModel;
import org.junit.Assert;
public class PromptTemplatesLiveTests {
public class PromptTemplatesLiveTest {
@Test
public void givenPromptTemplate_whenSuppliedInput_thenValidResponse() {

View File

@ -10,7 +10,7 @@ import dev.langchain4j.memory.chat.MessageWindowChatMemory;
import dev.langchain4j.model.openai.OpenAiChatModel;
import dev.langchain4j.service.AiServices;
public class ServiceWithToolsLiveTests {
public class ServiceWithToolsLiveTest {
static class Calculator {