Engine mocks don't need to be in the `Geary` namespace, and including them there makes it difficult to use them in client tests, so put them all in their own name-space and corresponding directory.
24 lines
525 B
Vala
24 lines
525 B
Vala
/*
|
|
* Copyright 2019 Michael Gratton <mike@vee.net>
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
public class Mock.FolderPoperties : Geary.FolderProperties {
|
|
|
|
|
|
public FolderPoperties() {
|
|
base(
|
|
0,
|
|
0,
|
|
Geary.Trillian.UNKNOWN,
|
|
Geary.Trillian.UNKNOWN,
|
|
Geary.Trillian.UNKNOWN,
|
|
false,
|
|
false,
|
|
false
|
|
);
|
|
}
|
|
|
|
}
|