~people-project/people-core/deep-refactoring

« back to all changes in this revision

Viewing changes to libs/test-it/assertion-result.vala

  • Committer: Ali Sabil
  • Date: 2009-01-29 22:35:23 UTC
  • Revision ID: ali.sabil@gmail.com-20090129223523-f834u01bufze5r0e
- Removed the libs/ folder, depending now on libcore to provide these features

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* assertion-result.vala
2
 
 *
3
 
 * Copyright (C) 2008 Ali Sabil <ali.sabil@gmail.com>
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Lesser General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2.1 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library 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 GNU
13
 
 * Lesser General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
18
 
 *
19
 
 */
20
 
 
21
 
 
22
 
namespace TestIt {
23
 
 
24
 
        public enum AssertionStatus {
25
 
                SUCCEEDED,
26
 
                FAILED,
27
 
                SKIPPED,
28
 
                TIMED_OUT
29
 
        }
30
 
 
31
 
        public class AssertionResult : Object {
32
 
                public AssertionStatus status {
33
 
                        get;
34
 
                        private set construct;
35
 
                }
36
 
 
37
 
                public string? message {
38
 
                        get;
39
 
                        private set construct;
40
 
                }
41
 
 
42
 
                public AssertionResult (AssertionStatus status, string? message) {
43
 
                        this.status = status;
44
 
                        this.message = message;
45
 
                }
46
 
        }
47
 
 
48
 
}