EMMA Coverage Report (generated Sat Jan 21 16:41:28 CET 2017)
[all classes][caldwell.ben.trolly]

COVERAGE SUMMARY FOR SOURCE FILE [TrollyPreferences.java]

nameclass, %method, %block, %line, %
TrollyPreferences.java100% (1/1)100% (2/2)100% (10/10)100% (4/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TrollyPreferences100% (1/1)100% (2/2)100% (10/10)100% (4/4)
TrollyPreferences (): void 100% (1/1)100% (3/3)100% (1/1)
onCreate (Bundle): void 100% (1/1)100% (7/7)100% (3/3)

1/**
2        <Trolly is a simple shopping list application for android phones.>
3        Copyright (C) 2009  Ben Caldwell
4         
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation, either version 3 of the License, or
8    (at your option) any later version.
9 
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14 
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18 
19package caldwell.ben.trolly;
20 
21import android.os.Bundle;
22import android.preference.PreferenceActivity;
23 
24public class TrollyPreferences extends PreferenceActivity {
25 
26        @Override
27        protected void onCreate(Bundle savedInstanceState) {
28                super.onCreate(savedInstanceState);
29                addPreferencesFromResource(R.xml.preferences);
30        }
31 
32}

[all classes][caldwell.ben.trolly]
EMMA 2.0.5312 (C) Vladimir Roubtsov