Files
frameworks_base/tests/DumpRenderTree2/src/com/android/dumprendertree2/LayoutTest.java
Maksymilian Osowski 3c8ccb3845 Added the LayoutTestsRunner class that is responsible for running the tests. Also, added some methods to FileFilter.
It preloads the tests from the given path, runs them and asks for dumps and diffs. It will also prepare summaries in the future. It delegates
most of the work of actually running the individual tests to LayoutTest class and AbstractResult (and its subclasses in the future).

Change-Id: I483bf26a380b539e4769e61b4a09fa270ab0e8e9
2010-07-16 14:32:12 +01:00

48 lines
1.4 KiB
Java

/*
* Copyright (C) 2010 The Android Open Source Project
*
* 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 or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.dumprendertree2;
import android.os.Handler;
/**
* A class that represents a single layout test. It is responsible for running the test,
* checking its result and creating an AbstractResult object.
*/
public class LayoutTest {
private String mRelativePath;
private Handler mCallbackHandler;
private AbstractResult mResult;
public LayoutTest(String relativePath, Handler callbackHandler) {
mRelativePath = relativePath;
mCallbackHandler = callbackHandler;
}
public void run() {
/** TODO: This is just a stub! */
mCallbackHandler.obtainMessage(LayoutTestsRunnerThread.MSG_TEST_FINISHED).sendToTarget();
}
public AbstractResult getResult() {
return mResult;
}
public String getRelativePath() {
return mRelativePath;
}
}