summaryrefslogtreecommitdiffstats
blob: 0dc48de86f0ee49dfb9b51cf8c7561548b7fef95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Copyright (c) 2014, Isode Limited, London, England.
* All rights reserved.
*/
/*
* Copyright (c) 2014, Remko Tronçon.
* All rights reserved.
*/

package com.isode.stroke.pubsub;
import com.isode.stroke.eventloop.Event;

public class TestCase {
    TestCase(String name, Event.Callback routine) {
        name_ = name;
        routine_ = routine;
    }
    
    String getName() {
        return name_;
    }
    
    Event.Callback getRoutine() {
        return routine_;
    }
    String name_;
    Event.Callback routine_;
}