Skip to content

Commit

Permalink
Issue checkstyle#11514: add test case for base cell editor
Browse files Browse the repository at this point in the history
  • Loading branch information
heyannely committed May 21, 2023
1 parent f5bed1f commit 1ae08b8
Showing 1 changed file with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
///////////////////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code and other text files for adherence to a set of rules.
// Copyright (C) 2001-2023 the original author or authors.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
///////////////////////////////////////////////////////////////////////////////////////////////

package com.puppycrawl.tools.checkstyle.gui;

import static com.google.common.truth.Truth.assertWithMessage;

import org.junit.jupiter.api.Test;

import javax.swing.event.CellEditorListener;


class BaseCellEditorTest {

private BaseCellEditor bce = new BaseCellEditor();

@Test
void testToString() {
assertWithMessage("is null")
.that(bce.getCellEditorValue() == null)
.isEqualTo(true);
}


}

0 comments on commit 1ae08b8

Please sign in to comment.