SetVelTo.java revision 8729:0242fce0f717
1251881Speter/*
2251881Speter * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
3251881Speter * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4251881Speter *
5251881Speter * This code is free software; you can redistribute it and/or modify it
6251881Speter * under the terms of the GNU General Public License version 2 only, as
7251881Speter * published by the Free Software Foundation.
8251881Speter *
9251881Speter * This code is distributed in the hope that it will be useful, but WITHOUT
10251881Speter * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11251881Speter * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12251881Speter * version 2 for more details (a copy is included in the LICENSE file that
13251881Speter * accompanied this code).
14251881Speter *
15251881Speter * You should have received a copy of the GNU General Public License version
16251881Speter * 2 along with this work; if not, write to the Free Software Foundation,
17251881Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18251881Speter *
19251881Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20251881Speter * or visit www.oracle.com if you need additional information or have any
21251881Speter * questions.
22251881Speter */
23251881Speter
24251881Speter/* @test
25251881Speter   @summary Test ModelPerformer setVelTo method */
26251881Speter
27251881Speterimport java.io.File;
28251881Speterimport java.io.FileOutputStream;
29251881Speterimport java.io.IOException;
30251881Speter
31251881Speterimport javax.sound.sampled.*;
32251881Speter
33251881Speterimport com.sun.media.sound.*;
34251881Speter
35251881Speterpublic class SetVelTo {
36251881Speter
37251881Speter    public static void main(String[] args) throws Exception {
38251881Speter        ModelPerformer performer = new ModelPerformer();
39251881Speter        performer.setVelTo(10);
40251881Speter        if(performer.getVelTo() != 10)
41251881Speter            throw new RuntimeException("performer.getVelTo() didn't return 10!");
42251881Speter    }
43251881Speter}
44251881Speter