patterntesting.check.ct.AbstractSopAspect.aj Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of patterntesting-check-ct Show documentation
Show all versions of patterntesting-check-ct Show documentation
PatternTesting Check.CT (patterntesting-check-ct) is a quality framework that
allows to automatically verify that Architecture/Design recommendations
are implemented correctly in the code.
It provides different checks of known anti patterns (like using System.out
for logging) but provides also a test framework for better testing.
The checks are done during compile time (this is the "CT" in Check.CT").
/*
*========================================================================
*
* Copyright 2001-2004 Vincent Massol & Matt Smith.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*========================================================================
*/
package patterntesting.check.ct;
/**
* Pattern Test that ensures that System.out
and
* System.err
are not used in the code. This is
* to prevent the usage of System.out.println("")
* calls (and variations).
*
* If you write your own aspect you must tell this aspect where you want to
* see the warnings. This is done by overwriting the abstract pointcut
* applicationCode
.
*
* Note: With AspectJ it is not possible to write a compile time
* check that only ensures that println()
calls are
* not allowed. It is possible for runtime checks but we have
* preferred to make a compile-time test for simplicity. Thus,
* code that manipulate System.out
and
* System.err
for other purpose that using the
* println()
methods will need to be added to the
* list of items to exclude from the tests, hence the abstract
* allowedCode
pointcut.
*
* @author Jerome Bernard
* @author Vincent Massol
*
* @version $Id: AbstractSopAspect.aj,v 1.4 2012/10/07 17:49:35 oboehm Exp $
*
* @deprecated since 1.3 you find it now in the io package
*/
public abstract aspect AbstractSopAspect extends patterntesting.check.ct.io.AbstractSopAspect {
}