EMMA Coverage Report (generated Mon Nov 01 16:48:29 PDT 2010)
[all classes][com.google.caja.plugin]

COVERAGE SUMMARY FOR SOURCE FILE [BrowserTestCaseStub.java]

nameclass, %method, %block, %line, %
BrowserTestCaseStub.java0%   (0/1)0%   (0/3)0%   (0/12)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class BrowserTestCaseStub0%   (0/1)0%   (0/3)0%   (0/12)0%   (0/5)
BrowserTestCaseStub (): void 0%   (0/1)0%   (0/3)0%   (0/1)
driveBrowser (WebDriver, String): void 0%   (0/1)0%   (0/3)0%   (0/2)
main (String []): void 0%   (0/1)0%   (0/6)0%   (0/2)

1// Copyright (C) 2010 Google Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14 
15package com.google.caja.plugin;
16 
17import org.openqa.selenium.WebDriver;
18 
19/**
20 * For starting up the server and browser a BrowserTestCase does, then
21 * stopping so that you can try making requests to server and/or see how the
22 * browser behaves in the test environment.
23 *
24 * To run this easily, 'ant runbrowserstub'.
25 *
26 * @author kpreid@switchb.org (Kevin Reid)
27 */
28public class BrowserTestCaseStub extends BrowserTestCase {
29  public static final void main(String[] args) {
30    new BrowserTestCaseStub().runBrowserTest("");
31  }
32 
33  @Override
34  @SuppressWarnings("deprecation")
35  protected void driveBrowser(WebDriver driver, String pageName) {
36    Thread.currentThread().suspend();
37  }
38}

[all classes][com.google.caja.plugin]
EMMA 2.0.5312 (C) Vladimir Roubtsov