repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git]
/
src
/
tests
/
kits
/
media
/
BufferTest.h
blob
20f764c9a1b08448c8bd0e6c1bf7570c7ce34b68
1
/*
2
* Copyright 2014 Haiku, Inc.
3
* Distributed under the terms of the MIT License.
4
*/
5
#ifndef BUFFER_TEST_H
6
#define BUFFER_TEST_H
7
8
9
#include <TestCase.h>
10
#include <TestSuite.h>
11
12
13
class
BufferTest
:
public
BTestCase
{
14
public
:
15
BufferTest
();
16
virtual
~
BufferTest
();
17
18
void
TestDefault
();
19
void
TestRef
();
20
void
TestSmall
();
21
22
static void
AddTests
(
BTestSuite
&
suite
);
23
};
24
25
26
#endif
27
28