Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/test/java/org/mybatis/spring/SqlSessionTemplateTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2024 the original author or authors.
* Copyright 2010-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -34,6 +34,7 @@

// tests basic usage and implementation only
// MapperFactoryBeanTest handles testing the transactional functions in SqlSessionTemplate
// Method is public as extended by other test classes outside this package
public class SqlSessionTemplateTest extends AbstractMyBatisSpringTest {

private static SqlSession sqlSessionTemplate;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/mybatis/spring/filter/ScanFilterTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2024 the original author or authors.
* Copyright 2010-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -31,7 +31,7 @@
/**
* test the function of excludeFilters in @MapperScan
*/
public class ScanFilterTest {
class ScanFilterTest {

private AnnotationConfigApplicationContext applicationContext;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2024 the original author or authors.
* Copyright 2010-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -24,9 +24,9 @@
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
* test the function of excludeFilters in <mybatis:scan/>
* test the function of excludeFilters in <code><mybatis:scan/></code>.
*/
public class XmlScanFilterTest {
class XmlScanFilterTest {

private ClassPathXmlApplicationContext applicationContext;

Expand Down