File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
memory/spring-ai-model-chat-memory-cassandra/src/test/java/org/springframework/ai/chat/memory/cassandra Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 1616
1717package org .springframework .ai .chat .memory .cassandra ;
1818
19+ import java .time .Duration ;
20+ import java .util .List ;
21+ import java .util .UUID ;
22+
1923import com .datastax .oss .driver .api .core .CqlSession ;
2024import com .datastax .oss .driver .api .core .CqlSessionBuilder ;
2125import com .datastax .oss .driver .api .core .cql .ResultSet ;
2226import org .junit .jupiter .api .Assertions ;
2327import org .junit .jupiter .api .Test ;
2428import org .junit .jupiter .params .ParameterizedTest ;
2529import org .junit .jupiter .params .provider .CsvSource ;
30+ import org .testcontainers .cassandra .CassandraContainer ;
31+ import org .testcontainers .junit .jupiter .Container ;
32+ import org .testcontainers .junit .jupiter .Testcontainers ;
33+
2634import org .springframework .ai .chat .memory .ChatMemory ;
2735import org .springframework .ai .chat .messages .AssistantMessage ;
2836import org .springframework .ai .chat .messages .Message ;
3341import org .springframework .boot .autoconfigure .jdbc .DataSourceAutoConfiguration ;
3442import org .springframework .boot .test .context .runner .ApplicationContextRunner ;
3543import org .springframework .context .annotation .Bean ;
36- import org .testcontainers .cassandra .CassandraContainer ;
37- import org .testcontainers .junit .jupiter .Container ;
38- import org .testcontainers .junit .jupiter .Testcontainers ;
39-
40- import java .time .Duration ;
41- import java .util .List ;
42- import java .util .UUID ;
4344
4445import static org .assertj .core .api .Assertions .assertThat ;
4546
You can’t perform that action at this time.
0 commit comments