geary/test/mock/mock-search-query.vala
Michael Gratton 2030b2dec7 test: Break out engine mock objects into their own name-space
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.
2020-08-13 19:51:33 +10:00

14 lines
393 B
Vala

/*
* Copyright © 2017-2020 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.SearchQuery : Geary.SearchQuery {
internal SearchQuery(Geary.Account owner, string raw) {
base(owner, raw, Geary.SearchQuery.Strategy.EXACT);
}
}